2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-03-06 12:26:50 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2007-05-28 14:09:04 +00:00
|
|
|
|
|
|
|
let
|
2009-04-21 16:30:32 +00:00
|
|
|
|
|
|
|
cfg = config.services.samba;
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2015-01-03 05:23:01 +00:00
|
|
|
samba = cfg.package;
|
2009-03-06 12:26:50 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
setupScript =
|
|
|
|
''
|
2015-02-04 19:31:50 +00:00
|
|
|
mkdir -p /var/lock/samba /var/log/samba /var/cache/samba /var/lib/samba/private
|
2009-10-12 16:36:19 +00:00
|
|
|
'';
|
|
|
|
|
2014-12-07 20:42:22 +00:00
|
|
|
shareConfig = name:
|
|
|
|
let share = getAttr name cfg.shares; in
|
|
|
|
"[${name}]\n " + (toString (
|
|
|
|
map
|
|
|
|
(key: "${key} = ${toString (getAttr key share)}\n")
|
|
|
|
(attrNames share)
|
|
|
|
));
|
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
configFile = pkgs.writeText "smb.conf"
|
2014-09-06 21:37:57 +00:00
|
|
|
(if cfg.configText != null then cfg.configText else
|
2009-10-12 16:36:19 +00:00
|
|
|
''
|
|
|
|
[ global ]
|
2015-02-04 19:31:50 +00:00
|
|
|
security = ${cfg.securityType}
|
|
|
|
passwd program = /var/setuid-wrappers/passwd %u
|
|
|
|
pam password change = ${toString cfg.syncPasswordsByPam}
|
|
|
|
invalid users = ${toString cfg.invalidUsers}
|
2007-05-28 14:09:04 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
${cfg.extraConfig}
|
2014-12-07 20:42:22 +00:00
|
|
|
|
|
|
|
${toString (map shareConfig (attrNames cfg.shares))}
|
2014-09-06 21:37:57 +00:00
|
|
|
'');
|
2009-04-21 16:30:32 +00:00
|
|
|
|
2011-04-13 20:06:29 +00:00
|
|
|
# This may include nss_ldap, needed for samba if it has to use ldap.
|
|
|
|
nssModulesPath = config.system.nssModules.path;
|
|
|
|
|
2012-12-26 23:54:37 +00:00
|
|
|
daemonService = appName: args:
|
2013-11-09 19:06:01 +00:00
|
|
|
{ description = "Samba Service Daemon ${appName}";
|
2009-04-21 16:30:32 +00:00
|
|
|
|
2014-05-24 11:58:05 +00:00
|
|
|
requiredBy = [ "samba.target" ];
|
2012-12-26 23:54:37 +00:00
|
|
|
partOf = [ "samba.target" ];
|
2009-04-21 16:30:32 +00:00
|
|
|
|
2011-04-28 08:07:17 +00:00
|
|
|
environment = {
|
|
|
|
LD_LIBRARY_PATH = nssModulesPath;
|
2012-07-16 15:27:59 +00:00
|
|
|
LOCALE_ARCHIVE = "/run/current-system/sw/lib/locale/locale-archive";
|
2011-04-28 08:07:17 +00:00
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2012-12-26 23:54:37 +00:00
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = "${samba}/sbin/${appName} ${args}";
|
|
|
|
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
|
|
|
};
|
2011-04-13 20:06:29 +00:00
|
|
|
|
2012-12-26 23:54:37 +00:00
|
|
|
restartTriggers = [ configFile ];
|
2009-10-12 16:36:19 +00:00
|
|
|
};
|
2009-04-21 16:30:32 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
in
|
2009-04-21 16:30:32 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
{
|
2009-04-21 16:30:32 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
###### interface
|
2009-04-21 16:30:32 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
options = {
|
2009-04-21 16:30:32 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
# !!! clean up the descriptions.
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
services.samba = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
2015-02-04 19:31:50 +00:00
|
|
|
type = types.bool;
|
2009-10-12 16:36:19 +00:00
|
|
|
default = false;
|
2015-02-04 19:31:50 +00:00
|
|
|
description = ''
|
2010-07-07 12:32:56 +00:00
|
|
|
Whether to enable Samba, which provides file and print
|
|
|
|
services to Windows clients through the SMB/CIFS protocol.
|
2015-02-04 19:31:50 +00:00
|
|
|
'';
|
2009-10-12 16:36:19 +00:00
|
|
|
};
|
2009-04-21 16:30:32 +00:00
|
|
|
|
2015-01-03 05:23:01 +00:00
|
|
|
package = mkOption {
|
2015-02-04 19:31:50 +00:00
|
|
|
type = types.package;
|
2015-01-03 05:23:01 +00:00
|
|
|
default = pkgs.samba;
|
|
|
|
example = pkgs.samba4;
|
|
|
|
description = ''
|
|
|
|
Defines which package should be used for the samba server.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
syncPasswordsByPam = mkOption {
|
2015-02-04 19:31:50 +00:00
|
|
|
type = types.bool;
|
2009-10-12 16:36:19 +00:00
|
|
|
default = false;
|
2015-02-04 19:31:50 +00:00
|
|
|
description = ''
|
|
|
|
Enabling this will add a line directly after pam_unix.so.
|
2009-10-12 16:36:19 +00:00
|
|
|
Whenever a password is changed the samba password will be updated as well.
|
|
|
|
However you still yave to add the samba password once using smbpasswd -a user
|
|
|
|
If you don't want to maintain an extra pwd database you still can send plain text
|
|
|
|
passwords which is not secure.
|
2015-02-04 19:31:50 +00:00
|
|
|
'';
|
2009-10-12 16:36:19 +00:00
|
|
|
};
|
2009-04-21 16:30:32 +00:00
|
|
|
|
2015-02-04 19:31:50 +00:00
|
|
|
invalidUsers = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ "root" ];
|
|
|
|
description = ''
|
|
|
|
List of users who are denied to login via Samba.
|
2009-10-12 16:36:19 +00:00
|
|
|
'';
|
|
|
|
};
|
2009-04-21 16:30:32 +00:00
|
|
|
|
2015-02-04 19:31:50 +00:00
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Additional global section and extra section lines go in here.
|
|
|
|
'';
|
2009-10-12 16:36:19 +00:00
|
|
|
};
|
2010-03-16 16:34:27 +00:00
|
|
|
|
2014-09-06 21:37:57 +00:00
|
|
|
configText = mkOption {
|
|
|
|
type = types.nullOr types.lines;
|
|
|
|
default = null;
|
2015-02-04 19:31:50 +00:00
|
|
|
description = ''
|
2014-09-06 21:37:57 +00:00
|
|
|
Verbatim contents of smb.conf. If null (default), use the
|
|
|
|
autogenerated file from NixOS instead.
|
2015-02-04 19:31:50 +00:00
|
|
|
'';
|
2014-09-06 21:37:57 +00:00
|
|
|
};
|
|
|
|
|
2010-03-16 17:17:37 +00:00
|
|
|
securityType = mkOption {
|
2015-02-04 19:31:50 +00:00
|
|
|
type = types.str;
|
2012-11-30 14:07:39 +00:00
|
|
|
default = "user";
|
|
|
|
example = "share";
|
2015-02-04 19:31:50 +00:00
|
|
|
description = "Samba security type";
|
2010-03-16 17:17:37 +00:00
|
|
|
};
|
|
|
|
|
2013-08-25 20:12:14 +00:00
|
|
|
nsswins = mkOption {
|
|
|
|
default = false;
|
|
|
|
type = types.uniq types.bool;
|
|
|
|
description = ''
|
|
|
|
Whether to enable the WINS NSS (Name Service Switch) plug-in.
|
|
|
|
Enabling it allows applications to resolve WINS/NetBIOS names (a.k.a.
|
|
|
|
Windows machine names) by transparently querying the winbindd daemon.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-12-07 20:42:22 +00:00
|
|
|
shares = mkOption {
|
|
|
|
default = {};
|
2015-02-04 19:31:50 +00:00
|
|
|
description = ''
|
2014-12-07 20:42:22 +00:00
|
|
|
A set describing shared resources.
|
|
|
|
See <command>man smb.conf</command> for options.
|
2015-02-04 19:31:50 +00:00
|
|
|
'';
|
|
|
|
type = types.attrsOf (types.attrsOf types.unspecified);
|
2014-12-07 20:42:22 +00:00
|
|
|
example =
|
|
|
|
{ srv =
|
|
|
|
{ path = "/srv";
|
|
|
|
"read only" = "yes";
|
|
|
|
comment = "Public samba share.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2009-04-21 16:30:32 +00:00
|
|
|
};
|
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2007-05-28 14:09:04 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
###### implementation
|
2009-03-06 12:26:50 +00:00
|
|
|
|
2012-11-30 14:07:39 +00:00
|
|
|
config = mkMerge
|
|
|
|
[ { # Always provide a smb.conf to shut up programs like smbclient and smbspool.
|
|
|
|
environment.etc = singleton
|
|
|
|
{ source =
|
|
|
|
if cfg.enable then configFile
|
|
|
|
else pkgs.writeText "smb-dummy.conf" "# Samba is disabled.";
|
|
|
|
target = "samba/smb.conf";
|
|
|
|
};
|
|
|
|
}
|
2007-05-28 14:09:04 +00:00
|
|
|
|
2012-11-30 14:07:39 +00:00
|
|
|
(mkIf config.services.samba.enable {
|
2013-10-15 12:47:51 +00:00
|
|
|
|
2013-08-25 20:12:14 +00:00
|
|
|
system.nssModules = optional cfg.nsswins samba;
|
|
|
|
|
2013-01-16 11:33:18 +00:00
|
|
|
systemd = {
|
2012-12-26 23:54:37 +00:00
|
|
|
targets.samba = {
|
2013-11-09 19:06:01 +00:00
|
|
|
description = "Samba Server";
|
2012-12-26 23:54:37 +00:00
|
|
|
requires = [ "samba-setup.service" ];
|
|
|
|
after = [ "samba-setup.service" "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
2012-11-30 14:07:39 +00:00
|
|
|
};
|
2007-05-28 14:09:04 +00:00
|
|
|
|
2012-12-26 23:54:37 +00:00
|
|
|
services = {
|
|
|
|
"samba-nmbd" = daemonService "nmbd" "-F";
|
|
|
|
"samba-smbd" = daemonService "smbd" "-F";
|
|
|
|
"samba-winbindd" = daemonService "winbindd" "-F";
|
|
|
|
"samba-setup" = {
|
2013-11-09 19:06:01 +00:00
|
|
|
description = "Samba Setup Task";
|
2012-12-26 23:54:37 +00:00
|
|
|
script = setupScript;
|
2014-09-05 22:45:47 +00:00
|
|
|
unitConfig.RequiresMountsFor = "/var/samba /var/log/samba";
|
2012-12-26 23:54:37 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2007-05-28 14:09:04 +00:00
|
|
|
|
2013-10-15 12:47:51 +00:00
|
|
|
security.pam.services.sambda = {};
|
|
|
|
|
2012-11-30 14:07:39 +00:00
|
|
|
})
|
|
|
|
];
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2007-05-28 14:09:04 +00:00
|
|
|
}
|