3
0
Fork 0
forked from mirrors/nixpkgs

sshd fix (users)

svn path=/nixos/branches/fix-style/; revision=14372
This commit is contained in:
Marc Weber 2009-03-06 12:26:13 +00:00
parent 7b0071781d
commit 0d48a73987

View file

@ -100,17 +100,19 @@ mkIf config.services.sshd.enable {
options
];
services = {
extraJobs = [{
name = "sshd";
users = [
users = {
extraUsers = [
{ name = "sshd";
uid = (import ../system/ids.nix).uids.sshd;
description = "SSH privilege separation user";
home = "/var/empty";
}
];
};
services = {
extraJobs = [{
name = "sshd";
job = ''
description "SSH server"