dotfiles/home/secrets/sops.nix
winston 1a6686ead9
chore: remove fonts from sops-nix
Ok, hear me out: managing fonts with sops is a huge pain in the butt.
Especially when you need to have your YubiKey plugged in, to have your
terminal render.
2023-03-16 14:13:13 +01:00

13 lines
223 B
Nix

{
config,
pkgs,
...
}: {
sops = {
gnupg.home = config.programs.gpg.homedir;
defaultSopsFile = ./main.yaml;
secrets = {
"kubeconfig".path = "${config.xdg.configHome}/kube/kubeconfig";
};
};
}