From bd232f3bdac8efe0ee14b2402d476367500bb718 Mon Sep 17 00:00:00 2001 From: iFargle Date: Sat, 25 Nov 2023 21:23:19 +0900 Subject: [PATCH] test --- nixos/common/modules/boot.nix | 2 +- nixos/common/modules/plymouth.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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