summary refs log tree commit diff
path: root/nixos/modules/profiles/base.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2016-12-28 14:57:06 +0100
committerLluís Batlle i Rossell <viric@viric.name>2016-12-28 14:57:06 +0100
commit33d07c7ea9f0d05d47dd4b41ded3b261380acfac (patch)
treed1e88889151c76eef037757c8c4c1b000ebe28c4 /nixos/modules/profiles/base.nix
parent5952897ec499f4e04d952aaa71f748910c1f3661 (diff)
downloadnixpkgs-33d07c7ea9f0d05d47dd4b41ded3b261380acfac.tar
nixpkgs-33d07c7ea9f0d05d47dd4b41ded3b261380acfac.tar.gz
nixpkgs-33d07c7ea9f0d05d47dd4b41ded3b261380acfac.tar.bz2
nixpkgs-33d07c7ea9f0d05d47dd4b41ded3b261380acfac.tar.lz
nixpkgs-33d07c7ea9f0d05d47dd4b41ded3b261380acfac.tar.xz
nixpkgs-33d07c7ea9f0d05d47dd4b41ded3b261380acfac.tar.zst
nixpkgs-33d07c7ea9f0d05d47dd4b41ded3b261380acfac.zip
zfs cannot be distributed. Disabling it in the isos.
It seems that it is a GPL violation to distribute zfs in the
installation ISOs.

https://sfconservancy.org/blog/2016/feb/25/zfs-and-linux/

If anyone knows the issue better and has a reason to reenable it
legally, feel free to reenable it. I don't know much about it.
Diffstat (limited to 'nixos/modules/profiles/base.nix')
-rw-r--r--nixos/modules/profiles/base.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/profiles/base.nix b/nixos/modules/profiles/base.nix
index f90d0d992ec..687cd9d80d3 100644
--- a/nixos/modules/profiles/base.nix
+++ b/nixos/modules/profiles/base.nix
@@ -45,7 +45,7 @@
   ];
 
   # Include support for various filesystems.
-  boot.supportedFilesystems = [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "zfs" "ntfs" "cifs" ];
+  boot.supportedFilesystems = [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
 
   # Configure host id for ZFS to work
   networking.hostId = lib.mkDefault "8425e349";