mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
13 lines
244 B
Nix
13 lines
244 B
Nix
{ config, ... }:
|
|
{
|
|
sops = {
|
|
age.keyFile = "${config.home.homeDirectory}/.config/sops/age/keys.txt";
|
|
|
|
defaultSopsFile = ../secrets/poby.yaml;
|
|
|
|
secrets = {
|
|
"github_ssh_key" = { };
|
|
"github_cli_token" = { };
|
|
};
|
|
};
|
|
}
|