Files
nix/modules/nixos/samba.nix
2025-04-25 23:10:55 +08:00

40 lines
1.0 KiB
Nix

{ username, pkgs, ... }:
{
services.samba-wsdd.enable = true; # make shares visible for windows 10 clients
networking.firewall.allowedTCPPorts = [
5357 # wsdd
];
networking.firewall.allowedUDPPorts = [
3702 # wsdd
];
services.samba = {
enable = true;
settings = {
global = {
"workgroup" = "WORKGROUP";
"server string" = "smbnix";
"netbios name" = "smbnix";
"security" = "user";
#use sendfile = "yes"
#max protocol = "smb2"
# note: localhost is the ipv6 localhost ::1
"hosts allow" = "10.7.43. 127.0.0.1 localhost";
"hosts deny" = "0.0.0.0/0";
"guest account" = "nobody";
"map to guest" = "bad user";
};
tmp = {
path = "/home/${username}/tmp";
browseable = "yes";
"read only" = "no";
"guest ok" = "yes";
"create mask" = "0644";
"directory mask" = "0755";
"force user" = "${username}";
"force group" = "users";
};
};
};
}