Enable Plymouth on desktops

This commit is contained in:
Jimbo 2025-01-20 14:54:06 -05:00
parent 8aaa3103c2
commit 897f9671d7
3 changed files with 19 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ lib, config, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
config = lib.mkIf config.system.desktop.enable { config = lib.mkIf config.system.desktop.enable {
services.pipewire = { services.pipewire = {

View file

@ -2,6 +2,7 @@
{ {
imports = [ imports = [
./lanzaboote ./lanzaboote
./plymouth
./services ./services
./systemd ./systemd
]; ];

View file

@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
{
boot = lib.mkIf config.system.desktop.enable {
plymouth.enable = true;
consoleLogLevel = 0;
initrd.verbose = false;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
];
};
}