nixos/modules/DM/autoLogin.nix
2023-02-22 19:41:05 -05:00

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;
};
};
};
}