Skip to content

Commit

Permalink
fix: disable zfs
Browse files Browse the repository at this point in the history
  • Loading branch information
soopyc committed Dec 9, 2024
1 parent 353da03 commit 309ca42
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nix/common.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs, modulesPath, nixos-hardware, ... }:
{ pkgs, modulesPath, nixos-hardware, lib, ... }:

{
imports = [
Expand All @@ -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;
}

0 comments on commit 309ca42

Please sign in to comment.