mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
16 lines
296 B
Nix
16 lines
296 B
Nix
{ inputs, ... }: {
|
|
imports = [ inputs.sops-nix.nixosModules.sops ];
|
|
|
|
sops = {
|
|
age.keyFile = "/home/hadi/.config/sops/age/keys.txt";
|
|
defaultSopsFile = ./secrets.yaml;
|
|
secrets = {
|
|
"example" = {
|
|
owner = "hadi";
|
|
path = "/home/hadi/test";
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|