From 4cae26f26a04d317669639e6546591af5707604f Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Mon, 30 Dec 2024 19:30:00 -0500 Subject: [PATCH] as cool as plymouth is, it just doesnt work super well. going to need to find another alternative, perhaps a login manager that supports pre-login animations --- modules/hardware/boot.nix | 15 --------------- modules/ricing/default.nix | 1 - modules/ricing/plymouth.nix | 26 -------------------------- 3 files changed, 42 deletions(-) delete mode 100644 modules/ricing/plymouth.nix diff --git a/modules/hardware/boot.nix b/modules/hardware/boot.nix index a40ab06..298f60e 100644 --- a/modules/hardware/boot.nix +++ b/modules/hardware/boot.nix @@ -6,22 +6,7 @@ efi = { canTouchEfiVariables = true; }; - # Can press any key to get the generation list, otherwise just load the first one cause it's probably what you want - timeout = 0; }; - - # Silent Booting - 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" - ]; }; }; } diff --git a/modules/ricing/default.nix b/modules/ricing/default.nix index 9afbecf..f7e9be4 100644 --- a/modules/ricing/default.nix +++ b/modules/ricing/default.nix @@ -1,5 +1,4 @@ { imports = [ - ./plymouth.nix ]; } diff --git a/modules/ricing/plymouth.nix b/modules/ricing/plymouth.nix deleted file mode 100644 index 871f0ed..0000000 --- a/modules/ricing/plymouth.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: let - rices = { - basic = { - enable = true; - themePackages = with pkgs; [ - (adi1090x-plymouth-themes.override { - selected_themes = ["deus_ex"]; - }) - ]; - theme = "deus_ex"; - extraConfig = ""; - }; - }; - - rice = let - enabledSet = lib.filter (set: config.ricing.${set}.enable) (lib.attrNames rices); - in - rices.${lib.head enabledSet}; -in { - boot.plymouth = rice; -}