dotfiles/machines/common/linux/boot.nix

14 lines
308 B
Nix
Raw Normal View History

{pkgs, ...}: {
boot = {
loader.efi.canTouchEfiVariables = true;
loader.systemd-boot.enable = true;
initrd.systemd.enable = true;
plymouth = {
enable = true;
theme = "catppuccin-mocha";
themePackages = [pkgs.nur.repos.nekowinston.plymouth-theme-catppuccin];
};
};
}