nixpkgs/nixos/modules/config
Rickard Nilsson eb2f44c18c Generate /etc/passwd and /etc/group at build time
This is a rather large commit that switches user/group creation from using
useradd/groupadd on activation to just generating the contents of /etc/passwd
and /etc/group, and then on activation merging the generated files with the
files that exist in the system. This makes the user activation process much
cleaner, in my opinion.

The users.extraUsers.<user>.uid and users.extraGroups.<group>.gid must all be
properly defined (if <user>.createUser is true, which it is by default). My
pull request adds a lot of uids/gids to config.ids to solve this problem for
existing nixos services, but there might be configurations that break because
this change. However, this will be discovered during the build.

Option changes introduced by this commit:

* Remove the options <user>.isSystemUser and <user>.isAlias since
they don't make sense when generating /etc/passwd statically.

* Add <group>.members as a complement to <user>.extraGroups.

* Add <user>.passwordFile for setting a user's password from an encrypted
(shadow-style) file.

* Add users.mutableUsers which is true by default. This means you can keep
managing your users as previously, by using useradd/groupadd manually. This is
accomplished by merging the generated passwd/group file with the existing files
in /etc on system activation. The merging of the files is simplistic. It just
looks at the user/group names. If a user/group exists both on the system and
in the generated files, the system entry will be kept un-changed and the
generated entries will be ignored. The merging itself is performed with the
help of vipw/vigr to properly lock the account files during edit.
If mutableUsers is set to false, the generated passwd and group files will not
be merged with the system files on activation. Instead they will simply replace
the system files, and overwrite any changes done on the running system. The
same logic holds for user password, if the <user>.password or
<user>.passwordFile options are used. If mutableUsers is false, password will
simply be replaced on activation. If true, the initial user passwords will be
set according to the configuration, but existing passwords will not be touched.

I have tested this on a couple of different systems and it seems to work fine
so far. If you think this is a good idea, please test it. This way of adding
local users has been discussed in issue #103 (and this commit solves that
issue).
2014-02-05 15:56:51 +01:00
..
fonts Strictly check the arguments to mkOption 2013-10-30 15:35:09 +01:00
gnu.nix Add lots of missing option types 2013-10-30 18:47:43 +01:00
i18n.nix Add lots of missing option types 2013-10-30 18:47:43 +01:00
krb5.nix Move all of NixOS to nixos/ in preparation of the repository merge 2013-10-10 13:28:20 +02:00
ldap.nix Move all of NixOS to nixos/ in preparation of the repository merge 2013-10-10 13:28:20 +02:00
networking.nix Add lots of missing option types 2013-10-30 18:47:43 +01:00
no-x-libs.nix Add lots of missing option types 2013-10-30 18:47:43 +01:00
nsswitch.nix Remove uses of the "merge" option attribute 2013-10-28 22:45:56 +01:00
power-management.nix Add lots of missing option types 2013-10-30 18:47:43 +01:00
pulseaudio.nix nixos: capitalize a bunch of service descriptions 2013-11-09 20:45:50 +01:00
shells-environment.nix Add some primops to lib 2013-11-12 13:48:30 +01:00
swap.nix Substitute "types.uniq types.string" -> "types.str" 2013-10-30 14:57:42 +01:00
sysctl.nix Disable various services when running inside a container 2013-11-26 18:19:45 +01:00
system-path.nix Make update-mime-database less verbose 2013-10-30 18:47:44 +01:00
timezone.nix Don't set $TZ 2014-01-06 18:27:07 +01:00
unix-odbc-drivers.nix Move all of NixOS to nixos/ in preparation of the repository merge 2013-10-10 13:28:20 +02:00
users-groups.nix Generate /etc/passwd and /etc/group at build time 2014-02-05 15:56:51 +01:00