stockholm/makefu/2configs/lanparty/samba.nix

41 lines
976 B
Nix
Raw Normal View History

2017-08-16 06:47:19 +00:00
{config, ... }:{
networking.firewall.allowedUDPPorts = [ 137 138 ];
networking.firewall.allowedTCPPorts = [ 139 445 ];
users.users.smbguest = {
name = "smbguest";
2021-06-05 18:06:00 +00:00
uid = config.ids.uids.smbguest; #effectively systemUser
2017-08-16 06:47:19 +00:00
description = "smb guest user";
home = "/data/lanparty";
createHome = true;
2021-12-04 20:02:32 +00:00
group = "share";
2017-08-16 06:47:19 +00:00
};
2021-12-04 20:02:32 +00:00
users.groups.share = {};
2017-08-16 06:47:19 +00:00
services.samba = {
enable = true;
enableNmbd = true;
2017-08-16 06:47:19 +00:00
shares = {
lanparty = {
2017-08-16 06:47:19 +00:00
path = "/data/lanparty/";
"read only" = "yes";
browseable = "yes";
"guest ok" = "yes";
};
share = {
2017-11-08 09:49:11 +00:00
path = "/data/incoming";
2017-08-16 06:47:19 +00:00
"read only" = "no";
browseable = "yes";
"guest ok" = "yes";
};
};
extraConfig = ''
guest account = smbguest
map to guest = bad user
# disable printing
load printers = no
printing = bsd
printcap name = /dev/null
disable spoolss = yes
'';
};
}