13 lines
225 B
Nix
13 lines
225 B
Nix
![]() |
{
|
||
|
config,
|
||
|
inputs,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
let
|
||
|
defaultSopsPath = "${inputs.self}/hosts/${config.networking.hostName}/secrets.yaml";
|
||
|
in
|
||
|
{
|
||
|
sops.defaultSopsFile = lib.mkIf (builtins.pathExists defaultSopsPath) defaultSopsPath;
|
||
|
}
|