0d095de38a
exist yet. Ludo's original patch only worked in the "update" case. Also, do this only for the nixbld group. svn path=/nixos/trunk/; revision=18990
259 lines
7.3 KiB
Nix
259 lines
7.3 KiB
Nix
{pkgs, config, ...}:
|
|
|
|
with pkgs.lib;
|
|
|
|
let
|
|
|
|
ids = config.ids;
|
|
|
|
|
|
# User accounts to be created/updated by NixOS.
|
|
users =
|
|
let
|
|
defaultUsers =
|
|
[ { name = "root";
|
|
uid = ids.uids.root;
|
|
description = "System administrator";
|
|
home = "/root";
|
|
shell = config.users.defaultUserShell;
|
|
group = "root";
|
|
}
|
|
{ name = "nobody";
|
|
uid = ids.uids.nobody;
|
|
description = "Unprivileged account (don't use!)";
|
|
}
|
|
];
|
|
|
|
makeNixBuildUser = nr:
|
|
{ name = "nixbld${toString nr}";
|
|
description = "Nix build user ${toString nr}";
|
|
|
|
/* For consistency with the setgid(2), setuid(2), and setgroups(2)
|
|
calls in `libstore/build.cc', don't add any supplementary group
|
|
here. */
|
|
uid = builtins.add ids.uids.nixbld nr;
|
|
group = "nixbld";
|
|
extraGroups = [];
|
|
};
|
|
|
|
nixBuildUsers = map makeNixBuildUser (pkgs.lib.range 1 10);
|
|
|
|
addAttrs =
|
|
{ name
|
|
, description
|
|
, uid ? ""
|
|
, group ? "nogroup"
|
|
, extraGroups ? []
|
|
, home ? "/var/empty"
|
|
, shell ? (if useDefaultShell then config.users.defaultUserShell else "/noshell")
|
|
, createHome ? false
|
|
, useDefaultShell ? false
|
|
, password ? null
|
|
}:
|
|
{ inherit name description uid group extraGroups home shell createHome password; };
|
|
|
|
in map addAttrs (defaultUsers ++ nixBuildUsers ++ config.users.extraUsers);
|
|
|
|
|
|
# Groups to be created/updated by NixOS.
|
|
groups =
|
|
let
|
|
defaultGroups =
|
|
[ { name = "root";
|
|
gid = ids.gids.root;
|
|
}
|
|
{ name = "wheel";
|
|
gid = ids.gids.wheel;
|
|
}
|
|
{ name = "disk";
|
|
gid = ids.gids.disk;
|
|
}
|
|
{ name = "kmem";
|
|
gid = ids.gids.kmem;
|
|
}
|
|
{ name = "tty";
|
|
gid = ids.gids.tty;
|
|
}
|
|
{ name = "floppy";
|
|
gid = ids.gids.floppy;
|
|
}
|
|
{ name = "uucp";
|
|
gid = ids.gids.uucp;
|
|
}
|
|
{ name = "lp";
|
|
gid = ids.gids.lp;
|
|
}
|
|
{ name = "cdrom";
|
|
gid = ids.gids.cdrom;
|
|
}
|
|
{ name = "tape";
|
|
gid = ids.gids.tape;
|
|
}
|
|
{ name = "video";
|
|
gid = ids.gids.video;
|
|
}
|
|
{ name = "dialout";
|
|
gid = ids.gids.dialout;
|
|
}
|
|
{ name = "nogroup";
|
|
gid = ids.gids.nogroup;
|
|
}
|
|
{ name = "users";
|
|
gid = ids.gids.users;
|
|
}
|
|
{ name = "nixbld";
|
|
gid = ids.gids.nixbld;
|
|
}
|
|
];
|
|
|
|
addAttrs =
|
|
{ name, gid ? "" }:
|
|
{ inherit name gid; };
|
|
|
|
in map addAttrs (defaultGroups ++ config.users.extraGroups);
|
|
|
|
|
|
# Note: the 'X' in front of the password is to distinguish between
|
|
# having an empty password, and not having a password.
|
|
serializedUser = u: "${u.name}\n${u.description}\n${toString u.uid}\n${u.group}\n${toString (concatStringsSep "," u.extraGroups)}\n${u.home}\n${u.shell}\n${toString u.createHome}\n${if u.password != null then "X" + u.password else ""}\n";
|
|
serializedGroup = g: "${g.name}\n${toString g.gid}";
|
|
|
|
# keep this extra file so that cat can be used to pass special chars such as "`" which is used in the avahi daemon
|
|
usersFile = pkgs.writeText "users" (concatStrings (map serializedUser users));
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
users.extraUsers = mkOption {
|
|
default = [];
|
|
example =
|
|
[ { name = "alice";
|
|
uid = 1234;
|
|
description = "Alice";
|
|
home = "/home/alice";
|
|
createHome = true;
|
|
group = "users";
|
|
extraGroups = ["wheel"];
|
|
shell = "/bin/sh";
|
|
password = "foobar";
|
|
}
|
|
];
|
|
description = ''
|
|
Additional user accounts to be created automatically by the system.
|
|
'';
|
|
};
|
|
|
|
users.extraGroups = mkOption {
|
|
default = [];
|
|
example =
|
|
[ { name = "students";
|
|
gid = 1001;
|
|
}
|
|
];
|
|
description = ''
|
|
Additional groups to be created automatically by the system.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = {
|
|
|
|
system.activationScripts.users = fullDepEntry
|
|
''
|
|
echo "updating users..."
|
|
|
|
cat ${usersFile} | while true; do
|
|
read name || break
|
|
read description
|
|
read uid
|
|
read group
|
|
read extraGroups
|
|
read home
|
|
read shell
|
|
read createHome
|
|
read password
|
|
|
|
if ! curEnt=$(getent passwd "$name"); then
|
|
useradd --system \
|
|
"$name" \
|
|
--comment "$description" \
|
|
''${uid:+--uid $uid} \
|
|
--gid "$group" \
|
|
--groups "$extraGroups" \
|
|
--home "$home" \
|
|
--shell "$shell" \
|
|
''${createHome:+--create-home}
|
|
if test "''${password:0:1}" = 'X'; then
|
|
echo "''${password:1}" | ${pkgs.pwdutils}/bin/passwd --stdin "$name"
|
|
fi
|
|
else
|
|
#echo "updating user $name..."
|
|
oldIFS="$IFS"; IFS=:; set -- $curEnt; IFS="$oldIFS"
|
|
prevUid=$3
|
|
prevHome=$6
|
|
# Don't change the UID if it's the same, otherwise usermod
|
|
# will complain.
|
|
if test "$prevUid" = "$uid"; then unset uid; fi
|
|
# Don't change the home directory if it's the same to prevent
|
|
# unnecessary warnings about logged in users.
|
|
if test "$prevHome" = "$home"; then unset home; fi
|
|
usermod \
|
|
"$name" \
|
|
--comment "$description" \
|
|
''${uid:+--uid $uid} \
|
|
--gid "$group" \
|
|
--groups "$extraGroups" \
|
|
''${home:+--home "$home"} \
|
|
--shell "$shell"
|
|
fi
|
|
|
|
if test "$group" = nixbld; then
|
|
# As a special hack, add users that have nixbld as the
|
|
# primary group to the /etc/group entry for the nixbld
|
|
# group. `nix-store' currently expects this in order
|
|
# to get the UIDs of all the build users by doing a
|
|
# getprnam("nixbld") call.
|
|
groupmod "$group" -A "$name"
|
|
fi
|
|
|
|
done
|
|
'' [ "groups" ];
|
|
|
|
system.activationScripts.groups = fullDepEntry
|
|
''
|
|
echo "updating groups..."
|
|
|
|
while true; do
|
|
read name || break
|
|
read gid
|
|
|
|
if ! curEnt=$(getent group "$name"); then
|
|
groupadd --system \
|
|
"$name" \
|
|
''${gid:+--gid $gid}
|
|
else
|
|
#echo "updating group $name..."
|
|
oldIFS="$IFS"; IFS=:; set -- $curEnt; IFS="$oldIFS"
|
|
prevGid=$3
|
|
if test -n "$gid" -a "$prevGid" != "$gid"; then
|
|
groupmod "$name" --gid $gid
|
|
fi
|
|
fi
|
|
done <<EndOfGroupList
|
|
${concatStringsSep "\n" (map serializedGroup groups)}
|
|
EndOfGroupList
|
|
'' [ "rootPasswd" "binsh" "etc" "var" ];
|
|
|
|
};
|
|
|
|
}
|