dotfiles/modules/config/instances/config/wireGuard.nix

19 lines
244 B
Nix
Raw Normal View History

2025-06-26 21:20:09 -05:00
{ moduleFunctions }:
2025-03-31 22:53:08 -05:00
let
2025-06-26 21:20:09 -05:00
inherit (moduleFunctions.instancesFunctions)
2025-03-31 22:53:08 -05:00
sopsPath
;
label = "WireGuard";
name = "wireguard";
2025-03-31 22:53:08 -05:00
in
{
label = label;
name = name;
2025-03-31 22:53:08 -05:00
sops = {
path0 = "${sopsPath}/${name}";
2025-03-31 22:53:08 -05:00
};
ports = {
};
}