mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
23 lines
568 B
Nix
23 lines
568 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/github";
|
|
mode = "0600";
|
|
};
|
|
cloudflare-dns-token = { path = "/etc/cloudflare/dnskey.txt"; };
|
|
nextcloud-pwd = { path = "/etc/nextcloud/pwd.txt"; };
|
|
adguard-pwd = { };
|
|
hoarder = { };
|
|
};
|
|
};
|
|
}
|