From e9cb874ec935e96a749496deba951cac7c8be483 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sat, 26 Jul 2025 21:46:44 +0200 Subject: [PATCH 1/2] chore: disable immich (via nix) and nextcloud for now --- modules/services/dandelion.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/dandelion.nix b/modules/services/dandelion.nix index 6bd0cd9..c11eff1 100644 --- a/modules/services/dandelion.nix +++ b/modules/services/dandelion.nix @@ -2,8 +2,8 @@ { imports = [ (import ./docker.nix) ] - ++ [ (import ./immich.nix) ] - ++ [ (import ./nextcloud.nix) ] + # ++ [ (import ./immich.nix) ] + # ++ [ (import ./nextcloud.nix) ] ++ [ (import ./home-assistant.nix) ] ++ [ (import ./monitoring.nix) ] ++ [ (import ./smart-monitoring.nix) ] From c7484bcda54c3217f702d3898f94039ba70a5cd4 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sat, 26 Jul 2025 21:47:14 +0200 Subject: [PATCH 2/2] feat: configure new zfs pools for dandelion --- hosts/dandelion/default.nix | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/hosts/dandelion/default.nix b/hosts/dandelion/default.nix index 313dbc2..afee27e 100644 --- a/hosts/dandelion/default.nix +++ b/hosts/dandelion/default.nix @@ -60,10 +60,16 @@ trim.enable = true; }; - # boot.zfs.extraPools = [ "terrabite" ]; + boot.zfs.extraPools = [ "spinners" ]; - # fileSystems."/terrabite/main" = { - # device = "terrabite/main"; - # fsType = "zfs"; - # }; + fileSystems = { + "/spinners/rootvol" = { + device = "terrabite/rootvol"; + fsType = "zfs"; + }; + "/spinners/ahwx" = { + device = "terrabite/ahwx"; + fsType = "zfs"; + }; + }; }