mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-06 13:07:13 -06:00
20 lines
279 B
Nix
Executable file
20 lines
279 B
Nix
Executable file
{ moduleFunctions }:
|
|
let
|
|
inherit (moduleFunctions.instancesFunctions)
|
|
sopsPath
|
|
;
|
|
|
|
label = "WireGuard";
|
|
name = "wireguard";
|
|
in
|
|
{
|
|
label = label;
|
|
name = name;
|
|
sops = {
|
|
path0 = "${sopsPath}/${name}";
|
|
};
|
|
ports = {
|
|
port0 = 53;
|
|
port1 = 51821;
|
|
};
|
|
}
|