flake/modules/home/sops/default.nix
2025-08-01 11:33:55 +00:00

11 lines
312 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 = { };
};
}