Regenerated

This commit is contained in:
2026-03-23 06:43:29 +00:00
parent 69040ff342
commit feb6c60a40
33 changed files with 0 additions and 1466 deletions
-20
View File
@@ -270,9 +270,6 @@ in
#+BEGIN_SRC nix :tangle generated/hosts/traveldroid/boot.nix :noweb tangle :mkdirp yes :eval never-html
{ pkgs, config, lib, flakeRoot, ... }:
let
grubThemeDir = "/boot/grub/themes/catppuccin-mocha";
in
{
############################
# Bootloader (GRUB)
@@ -284,9 +281,6 @@ in
devices = [ "nodev" ]; # pas aan naar je echte EFI-device indien nodig
useOSProber = true;
timeout = 5;
# Declaratieve theme
theme = "${grubThemeDir}/theme.txt";
};
};
@@ -320,20 +314,6 @@ in
};
boot.initrd.systemd.enable = true;
############################
# GRUB theme declaratief via environment.etc
############################
environment.etc."grub/themes/catppuccin-mocha/theme.txt".source =
"${flakeRoot}/assets/system/theming/boot/theme.txt";
environment.etc."grub/themes/catppuccin-mocha/background.png".source =
"${flakeRoot}/assets/system/theming/boot/background.png";
############################
# System state
############################
system.stateVersion = "26.05";
}
#+END_SRC