flake/modules/home/sops/default.nix
2025-01-19 20:26:22 +00:00

10 lines
285 B
Nix

{ pkgs, lib, config, inputs, system, ... }:
let cfg = config.mods;
in with lib; {
imports = [ inputs.sops-nix.homeManagerModules.sops ];
sops = {
age.keyFile = "/home/muon/.config/sops/age/keys.txt";
defaultSopsFile = ./secrets.yaml;
secrets.zipline-auth = { };
};
}