forked from nico/dots
17 lines
324 B
Nix
17 lines
324 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.samba = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
settings = {
|
|
global = {
|
|
"workgroup" = "WORKGROUP";
|
|
"server string" = "${config.networking.hostName}";
|
|
"netbios name" = "${config.networking.hostName}";
|
|
"security" = "user";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|