From 10d8aa83c3f5969225bcaff57643dabb50ecf436 Mon Sep 17 00:00:00 2001 From: ska Date: Fri, 2 Jan 2026 23:53:49 +0000 Subject: [PATCH] Update configuration.nix --- configuration.nix | 33 +++------------------------------ 1 file changed, 3 insertions(+), 30 deletions(-) diff --git a/configuration.nix b/configuration.nix index 0509437..5f52c0e 100644 --- a/configuration.nix +++ b/configuration.nix @@ -23,36 +23,9 @@ ############################################################ boot.initrd.systemd.enable = true; - - boot = { - - plymouth = { - enable = true; - theme = "rings"; - themePackages = with pkgs; [ - # By default we would install all themes - (adi1090x-plymouth-themes.override { - selected_themes = [ "rings" ]; - }) - ]; - }; - - # Enable "Silent boot" - consoleLogLevel = 3; - initrd.verbose = false; - kernelParams = [ - "quiet" - "splash" - "boot.shell_on_fail" - "udev.log_priority=3" - "rd.systemd.show_status=auto" - ]; - # 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 - loader.timeout = 0; - - }; + boot.consoleLogLevel = 3; + boot.initrd.verbose = false; + boot.loader.timeout = 0; boot.initrd.availableKernelModules = [ "usb_storage"