Merge pull request #4213 from wkennington/master.zfsiso

[Dont Merge] nixos-iso: Add zfs / btrfs to supportedFilesystems
This commit is contained in:
William A. Kennington III 2014-10-25 18:01:17 -07:00
commit 8636d93f54

View File

@ -42,6 +42,9 @@ with lib;
# Get a console as soon as the initrd loads fbcon on EFI boot.
boot.initrd.kernelModules = [ "fbcon" ];
# Add support for cow filesystems and their utilities
boot.supportedFilesystems = [ "zfs" "btrfs" ];
# Allow the user to log in as root without a password.
security.initialRootPassword = "";
}