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