From 74bd62f90ea5053511509bc53023ac59e2d6f08f Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Fri, 9 Jun 2023 00:23:20 +0200 Subject: [PATCH] Revert "Garage: use stable" This reverts commit 55ae85008bb319f8e1e4f1732d637cc3198b7fc8. --- 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 cdc1988..2cbdf69 100644 --- a/nixos_modules/garage.nix +++ b/nixos_modules/garage.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: { +{ pkgs, 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;