mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
19 lines
388 B
Nix
19 lines
388 B
Nix
{config, ...}: let
|
|
ageKeyFile = "${config.home.homeDirectory}/.config/sops/age/keys.txt";
|
|
in {
|
|
home.sessionVariables = {
|
|
SOPS_AGE_KEY_FILE = ageKeyFile;
|
|
};
|
|
|
|
sops = {
|
|
age.keyFile = ageKeyFile;
|
|
|
|
defaultSopsFile = config.repo.user.secretFile;
|
|
|
|
secrets = {
|
|
"github_ssh_key" = {};
|
|
"github_cli_token" = {};
|
|
"kmeat_mac_mini_ssh_key" = {};
|
|
};
|
|
};
|
|
}
|