diff --git a/nix/common.nix b/nix/common.nix index f539b92..842f51c 100644 --- a/nix/common.nix +++ b/nix/common.nix @@ -1,4 +1,4 @@ -{ pkgs, modulesPath, nixos-hardware, ... }: +{ pkgs, modulesPath, nixos-hardware, lib, ... }: { imports = [ @@ -24,6 +24,6 @@ (pkgs.callPackage ./pkgs/firmware-script.nix {}) ]; - # ZFS is (sometimes) broken and prevents building without this - nixpkgs.config.allowBroken = true; + # this branch disables zfs. + boot.supportedFilesystems.zfs = lib.mkForce false; }