mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
18 lines
335 B
Nix
18 lines
335 B
Nix
_: {
|
|
config,
|
|
lib,
|
|
options,
|
|
...
|
|
}: let
|
|
cfg = config.localModules.DM.autoLogin;
|
|
in {
|
|
options.localModules.DM.autoLogin = lib.mkEnableOption "";
|
|
config = lib.mkIf cfg {
|
|
services.xserver.displayManager = {
|
|
autoLogin = {
|
|
enable = true;
|
|
user = config.localModules.DM.loginUser;
|
|
};
|
|
};
|
|
};
|
|
}
|