summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/gum-share.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2017-05-25 23:19:36 +0200
committermakefu <github@syntax-fehler.de>2017-05-25 23:19:36 +0200
commit0c92dd719a46139523f6e353c354871bd78024a4 (patch)
treeb57b178de784847d9e0748a748412178762d621b /makefu/2configs/gum-share.nix
parent243d33abe350a1a7b41a7f2c6106fd5b92bde4c8 (diff)
m 2: rename stats and share
Diffstat (limited to 'makefu/2configs/gum-share.nix')
-rw-r--r--makefu/2configs/gum-share.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/makefu/2configs/gum-share.nix b/makefu/2configs/gum-share.nix
deleted file mode 100644
index e578f43d..00000000
--- a/makefu/2configs/gum-share.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with config.krebs.lib;
-let
- hostname = config.krebs.build.host.name;
-in {
- # users.users.smbguest = {
- # name = "smbguest";
- # uid = config.ids.uids.smbguest;
- # description = "smb guest user";
- # home = "/var/empty";
- # };
-
- users.users.download = { };
- services.samba = {
- enable = true;
- shares = {
- download = {
- path = "/var/download";
- "read only" = "no";
- browseable = "yes";
- "guest ok" = "no";
- "valid users" = "download";
- };
- };
- extraConfig = ''
- # guest account = smbguest
- # map to guest = bad user
- # disable printing
- load printers = no
- printing = bsd
- printcap name = /dev/null
- disable spoolss = yes
- '';
- };
- networking.firewall.extraCommands = ''
- iptables -A INPUT -i retiolum -p tcp --dport 445 -j ACCEPT
- '';
-}