summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd/installation-cd-base.nix
diff options
context:
space:
mode:
authorRicardo M. Correia <rcorreia@wizy.org>2015-04-28 17:15:02 +0200
committerRicardo M. Correia <rcorreia@wizy.org>2015-04-28 17:15:02 +0200
commitf5e7190572dcc3f0f62918f1676439706623fe93 (patch)
tree5cafcb2f00ec2f002474f199786dee69c89a6ea1 /nixos/modules/installer/cd-dvd/installation-cd-base.nix
parent3d1db70761106aba93626d45927e7bd4280a7ef2 (diff)
downloadnixpkgs-f5e7190572dcc3f0f62918f1676439706623fe93.tar
nixpkgs-f5e7190572dcc3f0f62918f1676439706623fe93.tar.gz
nixpkgs-f5e7190572dcc3f0f62918f1676439706623fe93.tar.bz2
nixpkgs-f5e7190572dcc3f0f62918f1676439706623fe93.tar.lz
nixpkgs-f5e7190572dcc3f0f62918f1676439706623fe93.tar.xz
nixpkgs-f5e7190572dcc3f0f62918f1676439706623fe93.tar.zst
nixpkgs-f5e7190572dcc3f0f62918f1676439706623fe93.zip
nixos.system_tarball_pc: Fix evaluation
It was broken due to 57b05765c968c1ad5245c59513d11d679ed7130d.

ZFS requires `networking.hostId` to be set.
Diffstat (limited to 'nixos/modules/installer/cd-dvd/installation-cd-base.nix')
-rw-r--r--nixos/modules/installer/cd-dvd/installation-cd-base.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/nixos/modules/installer/cd-dvd/installation-cd-base.nix b/nixos/modules/installer/cd-dvd/installation-cd-base.nix
index fde9989e1f9..446d79ce220 100644
--- a/nixos/modules/installer/cd-dvd/installation-cd-base.nix
+++ b/nixos/modules/installer/cd-dvd/installation-cd-base.nix
@@ -45,9 +45,6 @@ with lib;
   # Get a console as soon as the initrd loads fbcon on EFI boot.
   boot.initrd.kernelModules = [ "fbcon" ];
 
-  # Configure host id for ZFS to work
-  networking.hostId = "8425e349";
-
   # Allow the user to log in as root without a password.
   users.extraUsers.root.initialHashedPassword = "";
 }