- 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.
25 lines
548 B
Nix
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;
|
|
}
|