nixos/system/boot.nix
2026-01-14 21:24:19 +01:00

24 lines
523 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;
};
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;
}