stockholm/makefu/2configs/temp/share-samba.nix

39 lines
798 B
Nix
Raw Normal View History

2016-07-20 18:35:30 +00:00
{config, ... }:{
users.users.smbguest = {
name = "smbguest";
uid = config.ids.uids.smbguest;
2016-09-02 10:47:53 +00:00
group = "share";
2016-07-20 18:35:30 +00:00
description = "smb guest user";
home = "/var/empty";
};
2016-09-02 10:47:53 +00:00
users.groups.share.members = [ "makefu" ];
2016-07-20 18:35:30 +00:00
networking.firewall.allowedTCPPorts = [
139 445 # samba
];
networking.firewall.allowedUDPPorts = [
137 138
];
services.samba = {
enable = true;
shares = {
share-home = {
path = "/home/share/";
"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
'';
};
}