boot/module.nix: change plymouth theme
This commit is contained in:
parent
c5add0f1f7
commit
35d64feda2
1 changed files with 10 additions and 4 deletions
|
@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue