This commit is contained in:
2025-10-22 22:12:54 -05:00
parent b7fb67f939
commit 4881ac5808

View File

@@ -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"];
};
};
}