Files
nixy/hosts/server/secrets/default.nix
Hadi fa76704fb5 edit secrets
Former-commit-id: bfbb4b54c3
2025-03-19 10:20:51 +01:00

19 lines
389 B
Nix

{ inputs, ... }: {
sops = {
age.keyFile = "/home/hadi/.config/sops/age/keys.txt";
defaultSopsFile = ./secrets.yaml;
secrets = {
sshconfig = {
owner = "hadi";
path = "/home/hadi/.ssh/config";
mode = "0600";
};
github-key = {
owner = "hadi";
path = "/home/hadi/.ssh/jack";
mode = "0600";
};
};
};
}