diff options
| -rw-r--r-- | makefu/1systems/gum.nix | 1 | ||||
| -rw-r--r-- | makefu/2configs/gum-share.nix | 39 | 
2 files changed, 40 insertions, 0 deletions
| diff --git a/makefu/1systems/gum.nix b/makefu/1systems/gum.nix index bfd880b88..8a43d25ff 100644 --- a/makefu/1systems/gum.nix +++ b/makefu/1systems/gum.nix @@ -24,6 +24,7 @@ in {        ../2configs/torrent.nix        ../2configs/graphite-standalone.nix        ../2configs/sabnzbd.nix +      ../2configs/gum-share.nix        ../2configs/opentracker.nix diff --git a/makefu/2configs/gum-share.nix b/makefu/2configs/gum-share.nix new file mode 100644 index 000000000..e578f43d3 --- /dev/null +++ b/makefu/2configs/gum-share.nix @@ -0,0 +1,39 @@ +{ 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 +  ''; +} | 
