[NixOS] Add samba service to imalison-home
This commit is contained in:
parent
5bf56a797b
commit
2ab0b3babf
@ -61,6 +61,32 @@
|
|||||||
networking.hostName = "imalison-home";
|
networking.hostName = "imalison-home";
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
services.samba = {
|
||||||
|
enable = true;
|
||||||
|
syncPasswordsByPam = true;
|
||||||
|
extraConfig = ''
|
||||||
|
workgroup = WORKGROUP
|
||||||
|
server string = smbnix
|
||||||
|
netbios name = smbnix
|
||||||
|
#use sendfile = yes
|
||||||
|
#max protocol = smb2
|
||||||
|
hosts allow = 192.168.0 localhost
|
||||||
|
hosts deny = 0.0.0.0/0
|
||||||
|
'';
|
||||||
|
shares = {
|
||||||
|
private = {
|
||||||
|
path = "/backups";
|
||||||
|
browseable = "yes";
|
||||||
|
"read only" = "no";
|
||||||
|
"guest ok" = "no";
|
||||||
|
"create mask" = "0644";
|
||||||
|
"directory mask" = "0755";
|
||||||
|
"force user" = "username";
|
||||||
|
"force group" = "groupname";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
screenSection = ''
|
screenSection = ''
|
||||||
DefaultDepth 24
|
DefaultDepth 24
|
||||||
|
Loading…
Reference in New Issue
Block a user