From 99a10f35ddcbe1d427ebb9c8f6ffc888f4931bf9 Mon Sep 17 00:00:00 2001 From: Wroclaw Date: Wed, 22 May 2024 15:33:26 +0200 Subject: [PATCH] core: move bootloader to hosts --- hosts/main.nix | 3 +++ nix-os/core.nix | 4 ---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/hosts/main.nix b/hosts/main.nix index faa817e..c9f3d25 100644 --- a/hosts/main.nix +++ b/hosts/main.nix @@ -25,6 +25,9 @@ ]; config = { + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + system.stateVersion = "23.05"; }; } \ No newline at end of file diff --git a/nix-os/core.nix b/nix-os/core.nix index 994a483..d79f6e9 100644 --- a/nix-os/core.nix +++ b/nix-os/core.nix @@ -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;