Merge branch 'main' into teutat3s

This commit is contained in:
teutat3s 2022-05-05 16:12:42 +02:00
commit 09c83e89b1
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1

View file

@ -26,6 +26,11 @@ in
default = { };
};
};
autologin.enable = mkOption {
type = types.bool;
default = true;
description = "Feature flag enabling autologin after boot.";
};
wayland.software-renderer.enable = mkOption {
type = types.bool;
default = false;
@ -54,7 +59,7 @@ in
};
};
services.getty.autologinUser = mkForce "${psCfg.user.name}";
services.getty.autologinUser = mkIf cfg.autologin.enable "${psCfg.user.name}";
qt5 = {
enable = true;