9 lines
220 B
Nix
9 lines
220 B
Nix
{ inputs, user, ... }:
|
|
{
|
|
imports = [ inputs.sops-nix.nixosModules.sops ];
|
|
sops.defaultSopsFile = ../secrets.yaml;
|
|
sops.defaultSopsFormat = "yaml";
|
|
sops.age.keyFile = "/home/${user}/.config/sops/age/keys.txt";
|
|
}
|
|
|