m 1 gum: add gum-share
This commit is contained in:
parent
4056d9b66d
commit
c26a3ce4b4
@ -24,6 +24,7 @@ in {
|
|||||||
../2configs/torrent.nix
|
../2configs/torrent.nix
|
||||||
../2configs/graphite-standalone.nix
|
../2configs/graphite-standalone.nix
|
||||||
../2configs/sabnzbd.nix
|
../2configs/sabnzbd.nix
|
||||||
|
../2configs/gum-share.nix
|
||||||
|
|
||||||
../2configs/opentracker.nix
|
../2configs/opentracker.nix
|
||||||
|
|
||||||
|
39
makefu/2configs/gum-share.nix
Normal file
39
makefu/2configs/gum-share.nix
Normal file
@ -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
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user