dotfiles/modules/config/instances/config/samba.nix

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