nix-darwin/home/sops.nix
Poby d653b39a56
feat: add github_cli_token as sops secret
mise activate zsh via oh-my-zsh plugin
2026-03-15 02:50:21 +09:00

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" = { };
};
};
}