.dotfiles/dot_config/flake/modules/nixos/boot.nix
2025-06-26 23:03:18 -04:00

20 lines
350 B
Nix

{pkgs, ...}: {
# Bootloader
boot = {
loader = {
timeout = 0;
systemd-boot = {
enable = true;
configurationLimit = 5;
};
efi.canTouchEfiVariables = true;
};
plymouth = {
enable = true;
themePackages = [pkgs.catppuccin-plymouth];
theme = "catppuccin-macchiato";
};
};
}