Gotta provide sane defaults! This is what I get for 5AM coding

This commit is contained in:
Parnell Springmeyer 2017-01-29 16:47:14 -06:00
parent 9abe7528e4
commit 4856b42ab6
No known key found for this signature in database
GPG Key ID: DCCF89258EAD874A

View File

@ -79,7 +79,13 @@ let
(s ? "setguid" && s.setguid == true) ||
(s ? "permissions")
then mkSetuidProgram s
else ""
else mkSetuidProgram
({ owner = "root";
group = "root";
setuid = true;
setgid = false;
permissions = "u+rx,g+x,o+x";
} // s)
) programs;
in
{