2009-05-27 23:14:38 +00:00
|
|
|
# Configuration for the Name Service Switch (/etc/nsswitch.conf).
|
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2012-10-07 00:58:46 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2009-05-27 23:14:38 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
inherit (config.services.avahi) nssmdns;
|
2013-08-25 20:12:14 +00:00
|
|
|
inherit (config.services.samba) nsswins;
|
2013-09-04 11:05:09 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2009-05-27 23:14:38 +00:00
|
|
|
options = {
|
|
|
|
|
|
|
|
# NSS modules. Hacky!
|
2012-10-07 00:58:46 +00:00
|
|
|
system.nssModules = mkOption {
|
2013-10-28 15:14:15 +00:00
|
|
|
type = types.listOf types.path;
|
2009-05-27 23:14:38 +00:00
|
|
|
internal = true;
|
|
|
|
default = [];
|
2013-09-04 11:05:09 +00:00
|
|
|
description = ''
|
2009-05-27 23:14:38 +00:00
|
|
|
Search path for NSS (Name Service Switch) modules. This allows
|
|
|
|
several DNS resolution methods to be specified via
|
|
|
|
<filename>/etc/nsswitch.conf</filename>.
|
2013-09-04 11:05:09 +00:00
|
|
|
'';
|
2009-05-27 23:14:38 +00:00
|
|
|
apply = list:
|
2012-09-16 17:14:19 +00:00
|
|
|
{
|
|
|
|
inherit list;
|
|
|
|
path = makeLibraryPath list;
|
2009-05-27 23:14:38 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
config = {
|
|
|
|
|
2014-08-24 15:08:55 +00:00
|
|
|
# Name Service Switch configuration file. Required by the C
|
|
|
|
# library. !!! Factor out the mdns stuff. The avahi module
|
|
|
|
# should define an option used by this module.
|
|
|
|
environment.etc."nsswitch.conf".text =
|
|
|
|
''
|
|
|
|
passwd: files ldap
|
|
|
|
group: files ldap
|
|
|
|
shadow: files ldap
|
|
|
|
hosts: files ${optionalString nssmdns "mdns_minimal [NOTFOUND=return]"} dns ${optionalString nssmdns "mdns"} ${optionalString nsswins "wins"} myhostname mymachines
|
|
|
|
networks: files dns
|
|
|
|
ethers: files
|
|
|
|
services: files
|
|
|
|
protocols: files
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Systemd provides nss-myhostname to ensure that our hostname
|
|
|
|
# always resolves to a valid IP address. It returns all locally
|
|
|
|
# configured IP addresses, or ::1 and 127.0.0.2 as
|
|
|
|
# fallbacks. Systemd also provides nss-mymachines to return IP
|
|
|
|
# addresses of local containers.
|
|
|
|
system.nssModules = [ config.systemd.package ];
|
2009-05-27 23:14:38 +00:00
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
};
|
2009-05-27 23:14:38 +00:00
|
|
|
}
|