1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-22 01:11:02 +03:00

Fix user type

This commit is contained in:
Tom McLaughlin 2022-09-26 05:01:35 -06:00
parent b744fee880
commit 9a7f38040b

View file

@ -152,7 +152,7 @@ with lib;
};
user = mkOption {
type = types.str;
type = types.nullOr types.str;
description = lib.mdDoc ''
User under which to run the service. If null, will use a systemd dynamic user.
'';