From 4881ac5808311960cf8351ca780c271c1b84e984 Mon Sep 17 00:00:00 2001 From: blake Date: Wed, 22 Oct 2025 22:12:54 -0500 Subject: [PATCH] fix zfs --- modules/holocron/zfs/default.nix | 42 ++++++++++++++++---------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/modules/holocron/zfs/default.nix b/modules/holocron/zfs/default.nix index 8819ea2..2f9e661 100644 --- a/modules/holocron/zfs/default.nix +++ b/modules/holocron/zfs/default.nix @@ -23,7 +23,7 @@ in { # pools to import #boot.zfs.extraPools = [ "holocron" "holocron/archives" "/holocron/media" "/holocron/users" ]; - boot.zfs.extraPools = [ "holocron" ]; + #boot.zfs.extraPools = [ "holocron" ]; # enable smart monitoring services.smartd = { @@ -54,25 +54,25 @@ in { # install userspace tools for acl's environment.systemPackages = with pkgs; [smartmontools]; - # fileSystems."/holocron" = { - # device = "holocron"; - # fsType = "zfs"; - # options = ["nofail"]; - # }; - # fileSystems."/holocron/archives" = { - # device = "holocron/archives"; - # fsType = "zfs"; - # options = ["nofail"]; - # }; - # fileSystems."/holocron/users" = { - # device = "holocron/users"; - # fsType = "zfs"; - # options = ["nofail"]; - # }; - # fileSystems."/holocron/media" = { - # device = "holocron/media"; - # fsType = "zfs"; - # options = ["nofail"]; - # }; + fileSystems."/holocron" = { + device = "holocron"; + fsType = "zfs"; + options = ["nofail"]; + }; + fileSystems."/holocron/archives" = { + device = "holocron/archives"; + fsType = "zfs"; + options = ["nofail"]; + }; + fileSystems."/holocron/users" = { + device = "holocron/users"; + fsType = "zfs"; + options = ["nofail"]; + }; + fileSystems."/holocron/media" = { + device = "holocron/media"; + fsType = "zfs"; + options = ["nofail"]; + }; }; }