diff --git a/nixos/common/modules/boot.nix b/nixos/common/modules/boot.nix index ed960bfc..d8b5908c 100644 --- a/nixos/common/modules/boot.nix +++ b/nixos/common/modules/boot.nix @@ -4,9 +4,9 @@ imports = [ ] ++ lib.optional (builtins.isString desktop) ./plymouth.nix; # Bootloader + boot.loader.systemd-boot.enable = lib.mkForce false; boot.loader.efi.canTouchEfiVariables = true; boot.loader.systemd-boot.enable = true; boot.tmp.cleanOnBoot = true; boot.initrd.systemd.enable = true; - boot.kernelParams = ["quiet"]; } \ No newline at end of file diff --git a/nixos/common/modules/plymouth.nix b/nixos/common/modules/plymouth.nix index b88b3240..3cb1c04e 100644 --- a/nixos/common/modules/plymouth.nix +++ b/nixos/common/modules/plymouth.nix @@ -4,4 +4,5 @@ # https://github.com/adi1090x/plymouth-themes boot.plymouth.theme = "red_loader"; boot.plymouth.themePackages = [ pkgs.adi1090x-plymouth-themes ]; + boot.kernelParams = ["quiet"]; } \ No newline at end of file