From df25453df0957f3c1320b9a73a16b6b0fdfad3f6 Mon Sep 17 00:00:00 2001 From: Aleksandr Lebedev Date: Fri, 6 Jun 2025 16:54:54 +0200 Subject: [PATCH] Disabled plymouth --- nixos/configuration.nix | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index e47c1e3..35b42a8 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -42,26 +42,10 @@ in boot = { kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; - - plymouth = { - enable = true; - }; loader = { systemd-boot.enable = true; efi.canTouchEfiVariables = if hwconfig.hostname != "kylekrein-mac" then true else false; }; - # Enable "Silent Boot" - 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" - ]; # Hide the OS choice for bootloaders. # It's still possible to open the bootloader list by pressing any key # It will just not appear on screen unless a key is pressed