Regenerated

This commit is contained in:
2026-03-23 06:38:37 +00:00
parent 51a86cbd31
commit 165f1e9ed2
33 changed files with 14 additions and 1447 deletions
+14 -7
View File
@@ -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";
}