summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/temp
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2016-07-20 20:35:30 +0200
committermakefu <github@syntax-fehler.de>2016-07-20 20:35:30 +0200
commite03ae6d79d77e654bb586475b52c7e6aa24ac06f (patch)
tree30b65d3e4aa7425180fea6f1cabd0091f0529d41 /makefu/2configs/temp
parentdf7416dc319e6815e32fa5fb32ba00d41481d368 (diff)
m 1 wbob: add missing
Diffstat (limited to 'makefu/2configs/temp')
-rw-r--r--makefu/2configs/temp/share-samba.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/makefu/2configs/temp/share-samba.nix b/makefu/2configs/temp/share-samba.nix
new file mode 100644
index 00000000..c021e66c
--- /dev/null
+++ b/makefu/2configs/temp/share-samba.nix
@@ -0,0 +1,36 @@
+{config, ... }:{
+ users.users.smbguest = {
+ name = "smbguest";
+ uid = config.ids.uids.smbguest;
+ description = "smb guest user";
+ home = "/var/empty";
+ };
+
+ 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
+ '';
+ };
+}