summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2016-05-24 00:48:05 +0200
committermakefu <github@syntax-fehler.de>2016-05-24 00:48:05 +0200
commit0d789b0b2c8dc348d427ce82359cc540a9e801ae (patch)
tree69f144d137656a900fe8ad6f5ea9f4827c0b08be /makefu
parent0aba999eb80b34b990217e6e12bcf347e0bc72a8 (diff)
ma 2 temp-share: init
Diffstat (limited to 'makefu')
-rw-r--r--makefu/2configs/temp-share-samba.nix28
1 files changed, 28 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..5f21e3bf
--- /dev/null
+++ b/makefu/2configs/temp-share-samba.nix
@@ -0,0 +1,28 @@
+{config, ... }:{
+ users.users.smbguest = {
+ name = "smbguest";
+ uid = config.ids.uids.smbguest;
+ description = "smb guest user";
+ home = "/var/empty";
+ };
+ 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
+ '';
+ };
+}