edit secrets

Former-commit-id: 2493fb0dfe
This commit is contained in:
Hadi
2025-03-24 13:15:02 +01:00
parent 8e26c50b92
commit 422e3ffaf5
2 changed files with 10 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
{ inputs, ... }: {
{ pkgs, ... }: {
sops = {
age.keyFile = "/home/hadi/.config/sops/age/keys.txt";
defaultSopsFile = ./secrets.yaml;
@@ -17,8 +17,13 @@
nextcloud-pwd = { path = "/etc/nextcloud/pwd.txt"; };
adguard-pwd = { };
hoarder = { };
wireguard-pia = { owner = "torrenter"; };
recyclarr = { owner = "recyclarr"; };
recyclarr = {
owner = "recyclarr";
mode = "0777";
};
wireguard-pia = { };
};
};
environment.systemPackages = with pkgs; [ sops age ];
}