mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-09 05:14:41 -05:00
18 lines
276 B
Nix
Executable file
18 lines
276 B
Nix
Executable file
{ instancesFunctions }:
|
|
let
|
|
inherit (instancesFunctions)
|
|
sopsPath
|
|
;
|
|
|
|
wireGuardLabel = "WireGuard";
|
|
wireGuardName = "wireguard";
|
|
in
|
|
{
|
|
label = wireGuardLabel;
|
|
name = wireGuardName;
|
|
sops = {
|
|
path0 = "${sopsPath}/${wireGuardName}";
|
|
};
|
|
ports = {
|
|
};
|
|
}
|