bootloader: separated into new file

This commit is contained in:
2026-05-17 08:57:11 +02:00
parent 2225c3ec2b
commit ab9714a2f7
2 changed files with 17 additions and 8 deletions
+15
View File
@@ -0,0 +1,15 @@
{
inputs,
pkgs,
...
}:
{
# grub theme
boot.loader.grub = {
theme = inputs.nixos-grub-themes.packages.${pkgs.system}.nixos; # if you want to use nixos grub theme
};
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}