From 55ae85008bb319f8e1e4f1732d637cc3198b7fc8 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Fri, 9 Jun 2023 00:19:55 +0200 Subject: [PATCH] Garage: use stable --- nixos_modules/garage.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos_modules/garage.nix b/nixos_modules/garage.nix index 2cbdf69..cdc1988 100644 --- a/nixos_modules/garage.nix +++ b/nixos_modules/garage.nix @@ -1,4 +1,4 @@ -{ pkgs, config, lib, ... }: { +{ config, lib, ... }: { users.groups.garage = { }; users.users.garage = { isSystemUser = true; group = "garage"; }; age.secrets.garage_rpc_secret = { file = ../secrets/garage_rpc_secret.age; owner = "garage"; }; @@ -14,7 +14,7 @@ }; services.garage = { - package = pkgs.unstable_pkgs.garage; + # package = pkgs.unstable_pkgs.garage; enable = true; settings = { replication_mode = 1;