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;