core: move bootloader to hosts

This commit is contained in:
Wroclaw 2024-05-22 15:33:26 +02:00
parent 22a7d47ace
commit 99a10f35dd
2 changed files with 3 additions and 4 deletions

View file

@ -25,6 +25,9 @@
];
config = {
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
system.stateVersion = "23.05";
};
}

View file

@ -5,10 +5,6 @@
{ config, pkgs, lib, ... }:
{
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# kernel
boot.kernelPackages = pkgs.linuxPackages_latest;