mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 16:58:34 -05:00
20 lines
350 B
Nix
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";
|
|
};
|
|
};
|
|
}
|