From dda62c451cd0723f3cda6b81cc0d60a0da803596 Mon Sep 17 00:00:00 2001 From: wmertens Date: Thu, 13 Nov 2014 10:31:15 +0100 Subject: [PATCH] Re-enable ZFS in installer image Hopefully #4807 fixes http://hydra.nixos.org/build/16883184 --- nixos/modules/installer/cd-dvd/installation-cd-base.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/installer/cd-dvd/installation-cd-base.nix b/nixos/modules/installer/cd-dvd/installation-cd-base.nix index e453a629f74f..b723a91e4f35 100644 --- a/nixos/modules/installer/cd-dvd/installation-cd-base.nix +++ b/nixos/modules/installer/cd-dvd/installation-cd-base.nix @@ -43,7 +43,7 @@ with lib; boot.initrd.kernelModules = [ "fbcon" ]; # Add support for cow filesystems and their utilities - boot.supportedFilesystems = [ /* "zfs" */ "btrfs" ]; + boot.supportedFilesystems = [ "zfs" "btrfs" ]; # Configure host id for ZFS to work networking.hostId = "8425e349";