nixos.system_tarball_pc: Fix evaluation

It was broken due to 57b05765c9.

ZFS requires `networking.hostId` to be set.
This commit is contained in:
Ricardo M. Correia 2015-04-28 17:15:02 +02:00
parent 3d1db70761
commit f5e7190572
2 changed files with 2 additions and 3 deletions

View file

@ -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 = "";
}

View file

@ -54,4 +54,6 @@
# Include support for various filesystems.
boot.supportedFilesystems = [ "btrfs" "reiserfs" "vfat" "f2fs" "zfs" "ntfs" "cifs" ];
# Configure host id for ZFS to work
networking.hostId = "8425e349";
}