diff --git a/modules/system/boot/module.nix b/modules/system/boot/module.nix index 872f2ad..b3179d9 100644 --- a/modules/system/boot/module.nix +++ b/modules/system/boot/module.nix @@ -1,4 +1,10 @@ -{pkgs, ...}: { +{ + lib, + pkgs, + ... +}: let + inherit (lib.modules) mkForce; +in { boot = { initrd = { verbose = true; @@ -8,7 +14,7 @@ efi.canTouchEfiVariables = true; systemd-boot = { enable = true; - editor = true; + editor = mkForce false; configurationLimit = 5; }; grub = { @@ -21,8 +27,8 @@ plymouth = { enable = false; # font = "${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf"; - themePackages = [pkgs.catppuccin-plymouth]; - theme = "catppuccin-macchiato"; + themePackages = [pkgs.plymouth-matrix-theme]; + theme = "matrix"; }; }; }