dotfiles/modules/sops.nix

13 lines
283 B
Nix
Raw Normal View History

2023-02-07 03:55:12 +01:00
{ config, lib, ... }:
{
# 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";
};
};
}