Regenerated
This commit is contained in:
+14
-7
@@ -271,7 +271,7 @@ in
|
||||
{ pkgs, config, lib, flakeRoot, ... }:
|
||||
|
||||
let
|
||||
grubTheme = "${flakeRoot}/assets/system/theming/boot";
|
||||
grubThemeSrc = "${flakeRoot}/assets/system/theming/boot";
|
||||
in
|
||||
{
|
||||
############################
|
||||
@@ -286,8 +286,8 @@ in
|
||||
devices = [ "nodev" ];
|
||||
useOSProber = true;
|
||||
|
||||
# Proper declarative theme
|
||||
theme = "${grubTheme}/theme.txt";
|
||||
# Declarative theme
|
||||
theme = "/boot/grub/themes/catppuccin-mocha/theme.txt";
|
||||
};
|
||||
};
|
||||
|
||||
@@ -304,11 +304,10 @@ in
|
||||
];
|
||||
|
||||
boot.consoleLogLevel = 0;
|
||||
|
||||
boot.supportedFilesystems = [ "ntfs" ];
|
||||
|
||||
############################
|
||||
# Plymouth (FIXED)
|
||||
# Plymouth splashscreen
|
||||
############################
|
||||
boot.plymouth = {
|
||||
enable = true;
|
||||
@@ -321,11 +320,19 @@ in
|
||||
];
|
||||
};
|
||||
|
||||
# CRITICAL: ensures plymouth starts early in initrd
|
||||
# Ensure plymouth starts early in initrd
|
||||
boot.initrd.systemd.enable = true;
|
||||
|
||||
############################
|
||||
# Required (avoid warnings)
|
||||
# Copy GRUB theme files declaratively
|
||||
############################
|
||||
environment.etc = {
|
||||
"grub/themes/catppuccin-mocha/theme.txt".source = "${grubThemeSrc}/theme.txt";
|
||||
"grub/themes/catppuccin-mocha/background.png".source = "${grubThemeSrc}/background.png";
|
||||
};
|
||||
|
||||
############################
|
||||
# Avoid warnings
|
||||
############################
|
||||
system.stateVersion = "26.05";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user