mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-07-05 02:45:01 -05:00
21 lines
265 B
Nix
Executable file
21 lines
265 B
Nix
Executable file
{ instancesFunctions }:
|
|
let
|
|
inherit (instancesFunctions)
|
|
sopsPath
|
|
;
|
|
|
|
label = "Samba";
|
|
name = "samba";
|
|
in
|
|
{
|
|
label = label;
|
|
name = name;
|
|
sops = {
|
|
path0 = "${sopsPath}/${name}";
|
|
};
|
|
paths = {
|
|
};
|
|
ports = {
|
|
port0 = 445; # Samba
|
|
};
|
|
}
|