nixos-iso: Add zfs / btrfs to supportedFilesystems

This commit is contained in:
William A. Kennington III 2014-09-22 13:34:47 -07:00
parent 7562afbe19
commit 5118dcf4fb

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