mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-10 13:54:38 -05:00
21 lines
290 B
Nix
Executable file
21 lines
290 B
Nix
Executable file
{ instancesFunctions }:
|
|
let
|
|
inherit (instancesFunctions)
|
|
sopsPath
|
|
;
|
|
|
|
sambaLabel = "Samba";
|
|
sambaName = "samba";
|
|
in
|
|
{
|
|
label = sambaLabel;
|
|
name = sambaName;
|
|
sops = {
|
|
path0 = "${sopsPath}/${sambaName}";
|
|
};
|
|
paths = {
|
|
};
|
|
ports = {
|
|
port0 = 445; # Samba
|
|
};
|
|
}
|