summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/share
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2017-12-08 14:04:35 +0100
committermakefu <github@syntax-fehler.de>2017-12-08 14:04:35 +0100
commite99a9ac9f113ea9d79ae3b830d8b328c9ef03e40 (patch)
treeffac171ffa78c58ed5892542250e5f23f137db65 /makefu/2configs/share
parent20eb8ac1e2d72920814b9f354623646824a68b6b (diff)
ma wbob.r: enable bureautomation
Diffstat (limited to 'makefu/2configs/share')
-rw-r--r--makefu/2configs/share/wbob.nix38
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 00000000..7d3fc38f
--- /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
+ '';
+ };
+}