From 0a89868cdee2fb00a01e061cc0333a990bddb2af Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Wed, 21 Feb 2024 17:16:49 +0100 Subject: [PATCH] feat(geo*): Use ZFS for additional drives --- machines/geo01/_configuration.nix | 5 ++++- machines/geo02/_configuration.nix | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/machines/geo01/_configuration.nix b/machines/geo01/_configuration.nix index eb8c564..8f2a118 100644 --- a/machines/geo01/_configuration.nix +++ b/machines/geo01/_configuration.nix @@ -12,7 +12,10 @@ lib.extra.mkConfig { extraConfig = { services.netbird.enable = true; - dgn-hardware.useBcachefs = true; + dgn-hardware = { + useZfs = true; + zfsPools = [ "work01" ]; + }; }; root = ./.; diff --git a/machines/geo02/_configuration.nix b/machines/geo02/_configuration.nix index eb8c564..8f2a118 100644 --- a/machines/geo02/_configuration.nix +++ b/machines/geo02/_configuration.nix @@ -12,7 +12,10 @@ lib.extra.mkConfig { extraConfig = { services.netbird.enable = true; - dgn-hardware.useBcachefs = true; + dgn-hardware = { + useZfs = true; + zfsPools = [ "work01" ]; + }; }; root = ./.;