nix-darwin/home/sops.nix
Poby 63a3bb6e98
feat: sops-nix configuration
encrypt personal ssh key for git
2026-03-15 02:50:19 +09:00

12 lines
212 B
Nix

{ config, ... }:
{
sops = {
age.keyFile = "${config.home.homeDirectory}/.config/sops/age/keys.txt";
defaultSopsFile = ../secrets/poby.yaml;
secrets = {
"github_ssh_key" = { };
};
};
}