nixos/system/boot.nix
ashisgreat22 6ada19e490 fix(searxng): resolve 502 error and apply Catppuccin theme
- Fix Redis connection by using container-to-container networking.
- Apply Catppuccin (Mocha/Latte) theme via custom CSS.
- Enable SearXNG module in host configuration.
- Configure Caddy reverse proxy and DDclient for search.ashisgreat.xyz.
2026-01-19 20:43:22 +01:00

25 lines
548 B
Nix

{ pkgs, ... }:
{
# Disable systemd-boot
boot.loader.systemd-boot.enable = false;
# Enable GRUB
boot.loader.grub = {
enable = true;
efiSupport = true;
device = "nodev";
useOSProber = false;
configurationLimit = 10;
gfxmodeEfi = "auto";
};
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.timeout = 5;
# Boot Animation (Plymouth)
boot.plymouth.enable = true;
# Catppuccin Theme Configuration
catppuccin.flavor = "mocha";
catppuccin.grub.enable = true;
catppuccin.plymouth.enable = true;
}