improvements

This commit is contained in:
2025-02-03 13:40:08 +01:00
parent 84004b6391
commit 69db03c140
44 changed files with 905 additions and 2180 deletions

View File

@@ -1,4 +1,9 @@
{ config, lib, ... }:
{
config,
lib,
username,
...
}:
with lib;
@@ -11,10 +16,11 @@ in
};
config = mkIf cfg.enable {
users.users.${username}.linger = true;
boot = {
loader.timeout = 0;
# plymouth.enable = true;
plymouth.enable = true;
kernelParams = [
"quiet"
@@ -25,7 +31,31 @@ in
"vt.global_cursor_default=0" # no cursor blinking
];
consoleLogLevel = 0;
initrd.verbose = false;
initrd = {
verbose = false;
systemd = {
enable = true;
services = {
#plymouth-quit.wantedBy = lib.mkForce [ ];
# plymouth-quit-wait.wantedBy = lib.mkForce [ ];
};
};
};
};
services.greetd.greeterManagesPlymouth = true;
/*
systemd.services = {
plymouth-quit-wait = {
overrideStrategy = "asDropin";
after = [ "graphical-session.target" ];
wantedBy = lib.mkForce [ "graphical-session.target" ];
};
plymouth-quit = {
overrideStrategy = "asDropin";
after = [ "graphical-session.target" ];
wantedBy = lib.mkForce [ "graphical-session.target" ];
};
};
*/
};
}