boot/module.nix: change plymouth theme

This commit is contained in:
Charlie Root 2025-04-06 21:43:36 +02:00
commit 35d64feda2
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

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