From 14f7c99c303b130bcdb2d0328e54e71c671f4d5a Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Sun, 7 Jan 2024 15:42:46 +0100 Subject: [PATCH] Remove quietboot support somehow didn't really work, boot just failed and i had to fix it with a rescue media --- hosts/common/optional/quietboot.nix | 33 ----------------------------- 1 file changed, 33 deletions(-) delete mode 100644 hosts/common/optional/quietboot.nix diff --git a/hosts/common/optional/quietboot.nix b/hosts/common/optional/quietboot.nix deleted file mode 100644 index 35786bb..0000000 --- a/hosts/common/optional/quietboot.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ - pkgs, - config, - ... -}: { - console = { - useXkbConfig = true; - earlySetup = false; - }; - - boot = { - plymouth = { - enable = true; - theme = "spinner-monochrome"; - themePackages = [ - (pkgs.plymouth-spinner-monochrome.override { - inherit (config.boot.plymouth) logo; - }) - ]; - }; - loader.timeout = 0; - kernelParams = [ - "quiet" - "loglevel=3" - "systemd.show_status=auto" - "udev.log_level=3" - "rd.udev.log_level=3" - "vt.global_cursor_default=0" - ]; - consoleLogLevel = 0; - initrd.verbose = false; - }; -}