dotfiles/modules/config/instances/config/samba.nix
2025-03-29 23:08:26 -05:00

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
};
}