flake/modules/home/sops/default.nix
2025-07-31 23:01:17 +00:00

10 lines
282 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 = { };
};
}