mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
improvements
This commit is contained in:
@@ -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" ];
|
||||
};
|
||||
};
|
||||
*/
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user