2009-05-28 01:14:38 +02:00
|
|
|
# Configuration for the Name Service Switch (/etc/nsswitch.conf).
|
|
|
|
|
2012-10-07 02:58:46 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-05-28 01:14:38 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
# NSS modules. Hacky!
|
2012-10-07 02:58:46 +02:00
|
|
|
system.nssModules = mkOption {
|
2009-05-28 01:14:38 +02:00
|
|
|
internal = true;
|
|
|
|
default = [];
|
|
|
|
description = "
|
|
|
|
Search path for NSS (Name Service Switch) modules. This allows
|
|
|
|
several DNS resolution methods to be specified via
|
|
|
|
<filename>/etc/nsswitch.conf</filename>.
|
|
|
|
";
|
2012-10-07 02:58:46 +02:00
|
|
|
merge = mergeListOption;
|
2009-05-28 01:14:38 +02:00
|
|
|
apply = list:
|
2012-09-16 19:14:19 +02:00
|
|
|
{
|
|
|
|
inherit list;
|
|
|
|
path = makeLibraryPath list;
|
2009-05-28 01:14:38 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2012-10-07 02:58:46 +02:00
|
|
|
inherit (config.services.avahi) nssmdns;
|
|
|
|
|
2009-05-28 01:14:38 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2012-10-07 02:58:46 +02:00
|
|
|
require = [ options ];
|
2009-05-28 01:14:38 +02:00
|
|
|
|
|
|
|
environment.etc =
|
|
|
|
[ # 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.
|
2012-10-07 02:58:46 +02:00
|
|
|
{ source = pkgs.writeText "nsswitch.conf"
|
|
|
|
''
|
|
|
|
passwd: files ldap
|
|
|
|
group: files ldap
|
|
|
|
shadow: files ldap
|
2012-10-07 03:00:26 +02:00
|
|
|
hosts: files ${optionalString nssmdns "mdns_minimal [NOTFOUND=return]"} dns ${optionalString nssmdns "mdns"} myhostname
|
2012-10-07 02:58:46 +02:00
|
|
|
networks: files dns
|
|
|
|
ethers: files
|
|
|
|
services: files
|
|
|
|
protocols: files
|
|
|
|
'';
|
2009-05-28 01:14:38 +02:00
|
|
|
target = "nsswitch.conf";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2012-10-07 03:00:26 +02:00
|
|
|
# Use 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.
|
2013-02-04 15:48:28 +01:00
|
|
|
system.nssModules = [ pkgs.systemd ];
|
2009-05-28 01:14:38 +02:00
|
|
|
}
|