3
0
Fork 0
forked from mirrors/nixpkgs

slim.nix: Remove the hideCursor option because it doesn't work

This commit is contained in:
Eelco Dolstra 2012-08-17 13:42:52 -04:00
parent b91aa1599c
commit 676157f1e7

View file

@ -17,7 +17,6 @@ let
halt_cmd ${config.system.build.systemd}/sbin/shutdown -h now
reboot_cmd ${config.system.build.systemd}/sbin/shutdown -r now
${optionalString (cfg.defaultUser != "") ("default_user " + cfg.defaultUser)}
${optionalString cfg.hideCursor "hidecursor true"}
${optionalString cfg.autoLogin "auto_login yes"}
'';
@ -76,14 +75,6 @@ in
'';
};
hideCursor = mkOption {
default = false;
example = true;
description = ''
Hide the mouse cursor on the login screen.
'';
};
autoLogin = mkOption {
default = false;
example = true;