flake/modules/home/sops/default.nix
2026-01-21 14:40:39 +00:00

23 lines
471 B
Nix

{
pkgs,
lib,
config,
inputs,
system,
...
}: let
cfg = config.mods;
in
with lib; {
imports = [inputs.sops-nix.homeManagerModules.sops];
sops = {
age.keyFile = "/persist/var/lib/sops-nix/key.txt";
defaultSopsFile = ./secrets.yaml;
secrets.zipline-auth = {};
secrets.atuin-auth = {};
secrets.hr-password = {};
secrets.sops-key = {};
secrets.google-db-test = {};
secrets.google-db-prod = {};
};
}