From be41d4bb64cd13bba74721cc9f93c39a4c44d567 Mon Sep 17 00:00:00 2001 From: Shelvacu Date: Sat, 23 Aug 2025 21:41:41 -0700 Subject: [PATCH] stuff --- hosts/prophecy/garage.nix | 3 ++- hosts/solis/garage.nix | 3 ++- hosts/triple-dezert/proxied/garage.nix | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) 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" ];