2023-05-17 08:03:45 +10:00
|
|
|
{ config, inputs, lib, ... }:
|
2021-09-25 22:35:51 +02:00
|
|
|
let
|
2023-05-17 08:03:45 +10:00
|
|
|
defaultSopsPath = "${toString inputs.self}/${config.networking.hostName}/secrets.yaml";
|
2021-09-25 22:35:51 +02:00
|
|
|
in
|
|
|
|
{
|
|
|
|
sops.defaultSopsFile = lib.mkIf (builtins.pathExists defaultSopsPath) defaultSopsPath;
|
|
|
|
}
|