nixos/modules/DM/autoLogin.nix
2023-02-20 22:53:39 -05:00

22 lines
355 B
Nix

_: {
config,
lib,
options,
settings,
...
}:
with lib; let
cfg = config.localModules.autoLogin;
in {
options.localModules.autoLogin = {
enable = mkEnableOption "";
};
config = mkIf cfg.enable {
services.xserver.displayManager = {
autoLogin = {
enable = true;
user = settings.username;
};
};
};
}