mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
13 lines
237 B
Nix
13 lines
237 B
Nix
{ inputs, ... }: {
|
|
sops = {
|
|
age.keyFile = "/home/hadi/.config/sops/age/keys.txt";
|
|
defaultSopsFile = ./secrets.yaml;
|
|
secrets = {
|
|
"example" = {
|
|
owner = "hadi";
|
|
path = "/etc/test";
|
|
};
|
|
};
|
|
};
|
|
}
|