1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-31 04:04:45 +00:00

fix autologin name docs

This commit is contained in:
Simon Holywell 2019-11-04 15:28:38 +10:00
parent 42c8f9bce3
commit 39bc7bb131
No known key found for this signature in database
GPG key ID: 3346447094AB9095

View file

@ -15,11 +15,11 @@ with lib;
};
system.defaults.loginwindow.autoLoginUser = mkOption {
type = types.nullOr types.bool;
type = types.nullOr types.str;
default = null;
description = ''
# Apple menu > System Preferences > Users and Groups > Login Options
Auto login the default user on boot. Default is false.
Auto login the supplied user on boot. Default is Off.
'';
};