Delete/rename modules
This commit is contained in:
parent
3add3c5d49
commit
9dabfa7771
5 changed files with 8 additions and 594 deletions
45
modules/sisko-samba/default.nix
Normal file
45
modules/sisko-samba/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
services = {
|
||||
samba-wsdd = {
|
||||
enable = true;
|
||||
workgroup = "WORKGROUP";
|
||||
hostname = "rock5b";
|
||||
discovery = true;
|
||||
};
|
||||
|
||||
samba = {
|
||||
enable = true;
|
||||
# global.security = "user";
|
||||
settings.global = {
|
||||
"workgroup" = "WORKGROUP";
|
||||
"server string" = "rock5b";
|
||||
"netbios name" = "rock5b";
|
||||
"security" = "user";
|
||||
"map to guest" = "bad user";
|
||||
"vfs objects" = "recycle";
|
||||
"recycle:repository" = ".recycle";
|
||||
"recycle:keeptree" = "yes";
|
||||
"recycle:versions" = "yes";
|
||||
};
|
||||
settings = {
|
||||
torrent = {
|
||||
path = "/mnt/hd/torrent";
|
||||
comment = "torrent";
|
||||
"force user" = "ccr";
|
||||
browseable = "yes";
|
||||
writeable = "yes";
|
||||
"guest ok" = "yes";
|
||||
"read only" = "no";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
networking.firewall = {
|
||||
allowedTCPPorts = [
|
||||
139
|
||||
445
|
||||
];
|
||||
allowedUDPPorts = [ 138 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue