2009-05-28 00:14:38 +01:00
|
|
|
# Configuration for the Name Service Switch (/etc/nsswitch.conf).
|
|
|
|
|
2018-12-12 12:57:31 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2012-10-07 01:58:46 +01:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2009-05-28 00:14:38 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2017-06-30 01:20:09 +01:00
|
|
|
# only with nscd up and running we can load NSS modules that are not integrated in NSS
|
|
|
|
canLoadExternalModules = config.services.nscd.enable;
|
2017-06-30 01:20:50 +01:00
|
|
|
myhostname = canLoadExternalModules;
|
|
|
|
mymachines = canLoadExternalModules;
|
|
|
|
nssmdns = canLoadExternalModules && config.services.avahi.nssmdns;
|
|
|
|
nsswins = canLoadExternalModules && config.services.samba.nsswins;
|
|
|
|
ldap = canLoadExternalModules && (config.users.ldap.enable && config.users.ldap.nsswitch);
|
|
|
|
sssd = canLoadExternalModules && config.services.sssd.enable;
|
|
|
|
resolved = canLoadExternalModules && config.services.resolved.enable;
|
2018-12-12 12:57:31 +00:00
|
|
|
googleOsLogin = canLoadExternalModules && config.security.googleOsLogin.enable;
|
2017-06-30 01:20:50 +01:00
|
|
|
|
|
|
|
hostArray = [ "files" ]
|
2017-11-30 20:43:48 +00:00
|
|
|
++ optional mymachines "mymachines"
|
|
|
|
++ optional nssmdns "mdns_minimal [NOTFOUND=return]"
|
|
|
|
++ optional nsswins "wins"
|
|
|
|
++ optional resolved "resolve [!UNAVAIL=return]"
|
2016-09-01 10:00:20 +01:00
|
|
|
++ [ "dns" ]
|
2017-11-30 20:43:48 +00:00
|
|
|
++ optional nssmdns "mdns"
|
|
|
|
++ optional myhostname "myhostname";
|
2013-09-04 12:05:09 +01:00
|
|
|
|
2016-09-01 10:00:20 +01:00
|
|
|
passwdArray = [ "files" ]
|
2016-04-14 19:18:09 +01:00
|
|
|
++ optional sssd "sss"
|
2017-11-30 20:43:48 +00:00
|
|
|
++ optional ldap "ldap"
|
|
|
|
++ optional mymachines "mymachines"
|
2018-12-12 12:57:31 +00:00
|
|
|
++ optional googleOsLogin "cache_oslogin oslogin"
|
2017-08-02 09:16:42 +01:00
|
|
|
++ [ "systemd" ];
|
2016-09-01 10:00:20 +01:00
|
|
|
|
|
|
|
shadowArray = [ "files" ]
|
2016-04-14 19:18:09 +01:00
|
|
|
++ optional sssd "sss"
|
2017-11-30 20:43:48 +00:00
|
|
|
++ optional ldap "ldap";
|
2016-09-01 10:00:20 +01:00
|
|
|
|
2016-04-14 19:18:09 +01:00
|
|
|
servicesArray = [ "files" ]
|
|
|
|
++ optional sssd "sss";
|
|
|
|
|
2016-09-01 10:00:20 +01:00
|
|
|
in {
|
2009-05-28 00:14:38 +01:00
|
|
|
options = {
|
|
|
|
|
|
|
|
# NSS modules. Hacky!
|
2017-06-30 01:20:09 +01:00
|
|
|
# Only works with nscd!
|
2012-10-07 01:58:46 +01:00
|
|
|
system.nssModules = mkOption {
|
2013-10-28 15:14:15 +00:00
|
|
|
type = types.listOf types.path;
|
2009-05-28 00:14:38 +01:00
|
|
|
internal = true;
|
|
|
|
default = [];
|
2013-09-04 12:05:09 +01:00
|
|
|
description = ''
|
2009-05-28 00:14:38 +01: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 12:05:09 +01:00
|
|
|
'';
|
2009-05-28 00:14:38 +01:00
|
|
|
apply = list:
|
2012-09-16 18:14:19 +01:00
|
|
|
{
|
|
|
|
inherit list;
|
|
|
|
path = makeLibraryPath list;
|
2009-05-28 00:14:38 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-02-15 18:22:14 +00:00
|
|
|
system.nssHosts = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
|
|
|
example = [ "mdns" ];
|
|
|
|
description = ''
|
|
|
|
List of host entries to configure in <filename>/etc/nsswitch.conf</filename>.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-05-28 00:14:38 +01:00
|
|
|
};
|
|
|
|
|
2013-09-04 12:05:09 +01:00
|
|
|
config = {
|
2017-06-30 01:20:09 +01:00
|
|
|
assertions = [
|
|
|
|
{
|
|
|
|
# generic catch if the NixOS module adding to nssModules does not prevent it with specific message.
|
|
|
|
assertion = config.system.nssModules.path != "" -> canLoadExternalModules;
|
|
|
|
message = "Loading NSS modules from path ${config.system.nssModules.path} requires nscd being enabled.";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
# resolved does not need to add to nssModules, therefore needs an extra assertion
|
|
|
|
assertion = resolved -> canLoadExternalModules;
|
|
|
|
message = "Loading systemd-resolved's nss-resolve NSS module requires nscd being enabled.";
|
|
|
|
}
|
|
|
|
];
|
2013-09-04 12:05:09 +01:00
|
|
|
|
2014-08-24 16:08:55 +01: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.
|
2016-09-01 10:00:20 +01:00
|
|
|
environment.etc."nsswitch.conf".text = ''
|
|
|
|
passwd: ${concatStringsSep " " passwdArray}
|
|
|
|
group: ${concatStringsSep " " passwdArray}
|
|
|
|
shadow: ${concatStringsSep " " shadowArray}
|
|
|
|
|
2019-02-15 18:22:14 +00:00
|
|
|
hosts: ${concatStringsSep " " config.system.nssHosts}
|
2016-09-01 10:00:20 +01:00
|
|
|
networks: files
|
|
|
|
|
|
|
|
ethers: files
|
2016-04-14 19:18:09 +01:00
|
|
|
services: ${concatStringsSep " " servicesArray}
|
2016-09-01 10:00:20 +01:00
|
|
|
protocols: files
|
|
|
|
rpc: files
|
|
|
|
'';
|
2014-08-24 16:08:55 +01:00
|
|
|
|
2019-02-15 18:22:14 +00:00
|
|
|
system.nssHosts = hostArray;
|
|
|
|
|
2014-08-24 16:08:55 +01:00
|
|
|
# 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.
|
2018-12-12 12:57:31 +00:00
|
|
|
system.nssModules = (optionals canLoadExternalModules [ config.systemd.package.out ])
|
|
|
|
++ optional googleOsLogin pkgs.google-compute-engine-oslogin.out;
|
2013-09-04 12:05:09 +01:00
|
|
|
};
|
2009-05-28 00:14:38 +01:00
|
|
|
}
|