From 5118dcf4fb728a25fdc68575f60bbe62adc9a272 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Mon, 22 Sep 2014 13:34:47 -0700 Subject: nixos-iso: Add zfs / btrfs to supportedFilesystems --- nixos/modules/installer/cd-dvd/installation-cd-base.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'nixos/modules/installer') diff --git a/nixos/modules/installer/cd-dvd/installation-cd-base.nix b/nixos/modules/installer/cd-dvd/installation-cd-base.nix index 4d87c20559d6..0a39e8dde9de 100644 --- a/nixos/modules/installer/cd-dvd/installation-cd-base.nix +++ b/nixos/modules/installer/cd-dvd/installation-cd-base.nix @@ -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 = ""; } -- cgit 1.4.1