summary refs log tree commit diff
path: root/nixos/modules/installer
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-09-22 13:34:47 -0700
committerWilliam A. Kennington III <william@wkennington.com>2014-10-14 20:24:43 -0700
commit5118dcf4fb728a25fdc68575f60bbe62adc9a272 (patch)
treed735c6ce2f48b571b1574779790e8140b6a092b5 /nixos/modules/installer
parent7562afbe19a04341f7a45bffd8aa53b194a43b97 (diff)
downloadnixlib-5118dcf4fb728a25fdc68575f60bbe62adc9a272.tar
nixlib-5118dcf4fb728a25fdc68575f60bbe62adc9a272.tar.gz
nixlib-5118dcf4fb728a25fdc68575f60bbe62adc9a272.tar.bz2
nixlib-5118dcf4fb728a25fdc68575f60bbe62adc9a272.tar.lz
nixlib-5118dcf4fb728a25fdc68575f60bbe62adc9a272.tar.xz
nixlib-5118dcf4fb728a25fdc68575f60bbe62adc9a272.tar.zst
nixlib-5118dcf4fb728a25fdc68575f60bbe62adc9a272.zip
nixos-iso: Add zfs / btrfs to supportedFilesystems
Diffstat (limited to 'nixos/modules/installer')
-rw-r--r--nixos/modules/installer/cd-dvd/installation-cd-base.nix3
1 files changed, 3 insertions, 0 deletions
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 = "";
 }