diff --git a/hosts/prophecy/garage.nix b/hosts/prophecy/garage.nix index b40cb2f..9c08140 100644 --- a/hosts/prophecy/garage.nix +++ b/hosts/prophecy/garage.nix @@ -1,9 +1,10 @@ { config, + vacuModules, ... }: { - imports = [ ../modules/garage/module.nix ]; + imports = [ vacuModules.garage ]; vacu.garage = { rpcPort = 9060; dataDir = "/propdata/garage-data"; diff --git a/hosts/solis/garage.nix b/hosts/solis/garage.nix index 1fe07cc..08da403 100644 --- a/hosts/solis/garage.nix +++ b/hosts/solis/garage.nix @@ -1,10 +1,11 @@ { config, + vacuModules, ... }: { - imports = [ ../modules/garage/module.nix ]; + imports = [ vacuModules.garage ]; vacu.garage = { rpcPort = 26950; dataDir = "/xstore/garage-data"; diff --git a/hosts/triple-dezert/proxied/garage.nix b/hosts/triple-dezert/proxied/garage.nix index e99b25c..c063a50 100644 --- a/hosts/triple-dezert/proxied/garage.nix +++ b/hosts/triple-dezert/proxied/garage.nix @@ -1,9 +1,10 @@ { config, + vacuModules, ... }: { - imports = [ ../../modules/garage/module.nix ]; + imports = [ vacuModules.garage ]; users.groups.garage-sockets.gid = 989; containers.frontproxy.config = { users.users.haproxy.extraGroups = [ "garage-sockets" ];