2009-05-27 23:14:38 +00:00
|
|
|
# Configuration for the Name Service Switch (/etc/nsswitch.conf).
|
|
|
|
|
2018-12-12 12:57:31 +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
|
|
|
|
2020-05-05 22:20:30 +00:00
|
|
|
{
|
2009-05-27 23:14:38 +00:00
|
|
|
options = {
|
|
|
|
|
|
|
|
# NSS modules. Hacky!
|
2017-06-30 00:20:09 +00:00
|
|
|
# Only works with nscd!
|
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 = [];
|
2022-07-19 13:05:45 +00:00
|
|
|
description = lib.mdDoc ''
|
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
|
2022-07-19 13:05:45 +00:00
|
|
|
{file}`/etc/nsswitch.conf`.
|
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
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-04-25 12:27:50 +00:00
|
|
|
system.nssDatabases = {
|
|
|
|
passwd = mkOption {
|
|
|
|
type = types.listOf types.str;
|
2022-07-19 13:05:45 +00:00
|
|
|
description = lib.mdDoc ''
|
|
|
|
List of passwd entries to configure in {file}`/etc/nsswitch.conf`.
|
2020-04-25 12:27:50 +00:00
|
|
|
|
|
|
|
Note that "files" is always prepended while "systemd" is appended if nscd is enabled.
|
|
|
|
|
|
|
|
This option only takes effect if nscd is enabled.
|
|
|
|
'';
|
|
|
|
default = [];
|
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
|
|
|
type = types.listOf types.str;
|
2022-07-19 13:05:45 +00:00
|
|
|
description = lib.mdDoc ''
|
|
|
|
List of group entries to configure in {file}`/etc/nsswitch.conf`.
|
2020-04-25 12:27:50 +00:00
|
|
|
|
|
|
|
Note that "files" is always prepended while "systemd" is appended if nscd is enabled.
|
|
|
|
|
|
|
|
This option only takes effect if nscd is enabled.
|
|
|
|
'';
|
|
|
|
default = [];
|
|
|
|
};
|
|
|
|
|
|
|
|
shadow = mkOption {
|
|
|
|
type = types.listOf types.str;
|
2022-07-19 13:05:45 +00:00
|
|
|
description = lib.mdDoc ''
|
|
|
|
List of shadow entries to configure in {file}`/etc/nsswitch.conf`.
|
2019-02-15 18:22:14 +00:00
|
|
|
|
2020-04-25 12:27:50 +00:00
|
|
|
Note that "files" is always prepended.
|
|
|
|
|
|
|
|
This option only takes effect if nscd is enabled.
|
|
|
|
'';
|
|
|
|
default = [];
|
|
|
|
};
|
|
|
|
|
|
|
|
hosts = mkOption {
|
|
|
|
type = types.listOf types.str;
|
2022-07-19 13:05:45 +00:00
|
|
|
description = lib.mdDoc ''
|
|
|
|
List of hosts entries to configure in {file}`/etc/nsswitch.conf`.
|
2020-04-25 12:27:50 +00:00
|
|
|
|
|
|
|
Note that "files" is always prepended, and "dns" and "myhostname" are always appended.
|
|
|
|
|
|
|
|
This option only takes effect if nscd is enabled.
|
|
|
|
'';
|
|
|
|
default = [];
|
|
|
|
};
|
|
|
|
|
|
|
|
services = mkOption {
|
|
|
|
type = types.listOf types.str;
|
2022-07-19 13:05:45 +00:00
|
|
|
description = lib.mdDoc ''
|
|
|
|
List of services entries to configure in {file}`/etc/nsswitch.conf`.
|
2020-04-25 12:27:50 +00:00
|
|
|
|
|
|
|
Note that "files" is always prepended.
|
|
|
|
|
|
|
|
This option only takes effect if nscd is enabled.
|
|
|
|
'';
|
|
|
|
default = [];
|
|
|
|
};
|
|
|
|
};
|
2009-05-27 23:14:38 +00:00
|
|
|
};
|
|
|
|
|
2020-04-25 12:27:50 +00:00
|
|
|
imports = [
|
|
|
|
(mkRenamedOptionModule [ "system" "nssHosts" ] [ "system" "nssDatabases" "hosts" ])
|
|
|
|
];
|
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
config = {
|
2017-06-30 00:20:09 +00:00
|
|
|
assertions = [
|
|
|
|
{
|
2020-05-05 22:20:30 +00:00
|
|
|
assertion = config.system.nssModules.path != "" -> config.services.nscd.enable;
|
2021-04-03 08:54:48 +00:00
|
|
|
message = ''
|
|
|
|
Loading NSS modules from system.nssModules (${config.system.nssModules.path}),
|
|
|
|
requires services.nscd.enable being set to true.
|
|
|
|
|
|
|
|
If disabling nscd is really necessary, it is possible to disable loading NSS modules
|
|
|
|
by setting `system.nssModules = lib.mkForce [];` in your configuration.nix.
|
|
|
|
'';
|
2017-06-30 00:20:09 +00:00
|
|
|
}
|
|
|
|
];
|
2013-09-04 11:05:09 +00:00
|
|
|
|
2014-08-24 15:08:55 +00:00
|
|
|
# Name Service Switch configuration file. Required by the C
|
2020-04-25 12:27:50 +00:00
|
|
|
# library.
|
2016-09-01 09:00:20 +00:00
|
|
|
environment.etc."nsswitch.conf".text = ''
|
2020-04-25 12:27:50 +00:00
|
|
|
passwd: ${concatStringsSep " " config.system.nssDatabases.passwd}
|
|
|
|
group: ${concatStringsSep " " config.system.nssDatabases.group}
|
|
|
|
shadow: ${concatStringsSep " " config.system.nssDatabases.shadow}
|
2016-09-01 09:00:20 +00:00
|
|
|
|
2020-04-25 12:27:50 +00:00
|
|
|
hosts: ${concatStringsSep " " config.system.nssDatabases.hosts}
|
2016-09-01 09:00:20 +00:00
|
|
|
networks: files
|
|
|
|
|
|
|
|
ethers: files
|
2020-04-25 12:27:50 +00:00
|
|
|
services: ${concatStringsSep " " config.system.nssDatabases.services}
|
2016-09-01 09:00:20 +00:00
|
|
|
protocols: files
|
|
|
|
rpc: files
|
|
|
|
'';
|
2014-08-24 15:08:55 +00:00
|
|
|
|
2020-04-25 12:27:50 +00:00
|
|
|
system.nssDatabases = {
|
2020-05-05 22:09:59 +00:00
|
|
|
passwd = mkBefore [ "files" ];
|
|
|
|
group = mkBefore [ "files" ];
|
|
|
|
shadow = mkBefore [ "files" ];
|
2020-05-05 22:20:30 +00:00
|
|
|
hosts = mkMerge [
|
nixos/systemd: fix NSS database ordering
- The order of NSS (host) modules has been brought in line with upstream
recommendations:
- The `myhostname` module is placed before the `resolve` (optional) and `dns`
entries, but after `file` (to allow overriding via `/etc/hosts` /
`networking.extraHosts`, and prevent ISPs with catchall-DNS resolvers from
hijacking `.localhost` domains)
- The `mymachines` module, which provides hostname resolution for local
containers (registered with `systemd-machined`) is placed to the front, to
make sure its mappings are preferred over other resolvers.
- If systemd-networkd is enabled, the `resolve` module is placed before
`files` and `myhostname`, as it provides the same logic internally, with
caching.
- The `mdns(_minimal)` module has been updated to the new priorities.
If you use your own NSS host modules, make sure to update your priorities
according to these rules:
- NSS modules which should be queried before `resolved` DNS resolution should
use mkBefore.
- NSS modules which should be queried after `resolved`, `files` and
`myhostname`, but before `dns` should use the default priority
- NSS modules which should come after `dns` should use mkAfter.
2021-07-17 17:41:45 +00:00
|
|
|
(mkOrder 998 [ "files" ])
|
|
|
|
(mkOrder 1499 [ "dns" ])
|
2020-05-05 22:20:30 +00:00
|
|
|
];
|
2020-04-28 15:02:46 +00:00
|
|
|
services = mkBefore [ "files" ];
|
2020-04-25 12:27:50 +00:00
|
|
|
};
|
2013-09-04 11:05:09 +00:00
|
|
|
};
|
2009-05-27 23:14:38 +00:00
|
|
|
}
|