This commit is contained in:
iFargle 2023-11-25 21:23:19 +09:00
parent d96fc05ce6
commit bd232f3bda
2 changed files with 2 additions and 1 deletions

View file

@ -4,9 +4,9 @@
imports = [ ] ++ lib.optional (builtins.isString desktop) ./plymouth.nix; imports = [ ] ++ lib.optional (builtins.isString desktop) ./plymouth.nix;
# Bootloader # Bootloader
boot.loader.systemd-boot.enable = lib.mkForce false;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.tmp.cleanOnBoot = true; boot.tmp.cleanOnBoot = true;
boot.initrd.systemd.enable = true; boot.initrd.systemd.enable = true;
boot.kernelParams = ["quiet"];
} }

View file

@ -4,4 +4,5 @@
# https://github.com/adi1090x/plymouth-themes # https://github.com/adi1090x/plymouth-themes
boot.plymouth.theme = "red_loader"; boot.plymouth.theme = "red_loader";
boot.plymouth.themePackages = [ pkgs.adi1090x-plymouth-themes ]; boot.plymouth.themePackages = [ pkgs.adi1090x-plymouth-themes ];
boot.kernelParams = ["quiet"];
} }