dotfiles/modules/sops.nix

11 lines
275 B
Nix
Raw Normal View History

2023-02-10 07:57:37 +01:00
{config, ...}: {
2023-02-07 03:55:12 +01:00
# TODO: enable after sops supports nix-darwin
sops = {
gnupg.home = "${config.xdg.configHome}/gnupg";
defaultSopsFile = ../secrets.yaml;
secrets."kubernetes-work-prod" = {
path = "${config.xdg.configHome}/kube/work-prod";
};
};
}