diff --git a/dot_config/flake/machines/wash/configuration.nix b/dot_config/flake/machines/wash/configuration.nix index 542e5ad..27afaf9 100644 --- a/dot_config/flake/machines/wash/configuration.nix +++ b/dot_config/flake/machines/wash/configuration.nix @@ -24,18 +24,24 @@ }; }; - # Bootloader. - boot.loader.systemd-boot = { - enable = true; - configurationLimit = 5; - }; + # Bootloader + boot = { + loader = { + timeout = 0; + + systemd-boot = { + enable = true; + configurationLimit = 5; + }; - boot.loader.efi.canTouchEfiVariables = true; + efi.canTouchEfiVariables = true; + }; - boot.plymouth = { - enable = true; - themePackages = [pkgs.catppuccin-plymouth]; - theme = "catppuccin-macchiato"; + plymouth = { + enable = true; + themePackages = [pkgs.catppuccin-plymouth]; + theme = "catppuccin-macchiato"; + }; }; # Nix options