1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-27 10:07:44 +00:00

feat: upgrade garage

This commit is contained in:
RGBCube 2025-04-13 01:39:20 +03:00
parent c9c0c681c6
commit 01985405f0
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
2 changed files with 8 additions and 1 deletions

View file

@ -13,7 +13,7 @@ in {
secrets.garageEnvironment.file = ./environment.age;
services.garage = enabled {
package = pkgs.garage_1_0_1;
package = pkgs.garage_1_x;
environmentFile = config.secrets.garageEnvironment.path;

7
modules/darwin/sudo.nix Normal file
View file

@ -0,0 +1,7 @@
{ lib, ... }: let
inherit (lib) enabled;
in {
security.pam.services.sudo_local = enabled {
touchIdAuth = true;
};
}