diff options
author | makefu <github@syntax-fehler.de> | 2017-12-08 14:04:35 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-12-08 14:04:35 +0100 |
commit | e99a9ac9f113ea9d79ae3b830d8b328c9ef03e40 (patch) | |
tree | ffac171ffa78c58ed5892542250e5f23f137db65 /makefu/2configs/share/wbob.nix | |
parent | 20eb8ac1e2d72920814b9f354623646824a68b6b (diff) |
ma wbob.r: enable bureautomation
Diffstat (limited to 'makefu/2configs/share/wbob.nix')
-rw-r--r-- | makefu/2configs/share/wbob.nix | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/makefu/2configs/share/wbob.nix b/makefu/2configs/share/wbob.nix new file mode 100644 index 000000000..7d3fc38fe --- /dev/null +++ b/makefu/2configs/share/wbob.nix @@ -0,0 +1,38 @@ +{config, ... }:{ + networking.firewall.allowedUDPPorts = [ 137 138 ]; + networking.firewall.allowedTCPPorts = [ 139 445 ]; + users.users.smbguest = { + name = "smbguest"; + uid = config.ids.uids.smbguest; + description = "smb guest user"; + home = "/home/share"; + createHome = true; + }; + services.samba = { + enable = true; + enableNmbd = true; + shares = { + incoming = { + path = "/data/incoming"; + "read only" = "no"; + browseable = "yes"; + "guest ok" = "yes"; + }; + data = { + path = "/data/"; + "read only" = "yes"; + 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 + ''; + }; +} |