Set up samba

This commit is contained in:
Oystein Kristoffer Tveit 2022-08-19 01:08:22 +02:00
parent 1b9a942873
commit 56a100f0c6
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 73 additions and 23 deletions

View File

@ -0,0 +1,73 @@
{ config, ... }:
{
services.samba = {
enable = true;
openFirewall = true;
securityType = "user";
extraConfig = ''
workgroup = TSUKI
server string = smbnix
netbios name = smbnix
security = user
use sendfile = yes
min protocol = SMB2
smb encrypt = desired
# note: localhost is the ipv6 localhost ::1
hosts allow = 10.0.0. 127.0.0.1 localhost
hosts deny = 0.0.0.0/0
guest ok = no
map to guest = never
'';
shares = {
media = {
"path" = "${config.machineVars.dataDrives.default}/media";
"read only" = false;
"browseable" = "yes";
"guest ok" = "no";
"force group" = "media";
"create mask" = "0644";
"directory mask" = "0755";
"comment" = "Pictures, music, videos, etc.";
};
momiji = {
"path" = config.machineVars.dataDrives.drives.momiji;
"read only" = false;
"browseable" = "yes";
"guest ok" = "no";
"valid users" = "h7x4";
"create mask" = "0644";
"directory mask" = "0755";
"comment" = "Momiji data drive.";
};
cirno = {
"path" = config.machineVars.dataDrives.drives.cirno;
"read only" = false;
"browseable" = "yes";
"guest ok" = "no";
"valid users" = "h7x4";
"create mask" = "0644";
"directory mask" = "0755";
"comment" = "Cirno data drive.";
};
home = {
"path" = config.users.users.h7x4.home;
"read only" = false;
"browseable" = "yes";
"guest ok" = "no";
"valid users" = "h7x4";
"create mask" = "0644";
"directory mask" = "0755";
"comment" = "Home directory.";
};
};
};
}

View File

@ -1,23 +0,0 @@
{}:
{
services.samba = {
enable = true;
extraConfig = ''
'';
shares = {
plex = {
path = "/data/media";
"read only" = false;
browseable = "yes";
"guest ok" = "no";
comment = "Pictures, music, videos, etc.";
};
# home = {
# };
};
};
}