From c11bdc6d805c26f0bc9dda6c2d73310b6c23343d Mon Sep 17 00:00:00 2001 From: Victor Date: Wed, 3 May 2023 13:09:19 +0200 Subject: [PATCH] add grub2 to lucy --- nixos/hosts/hades/lucy/configuration.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nixos/hosts/hades/lucy/configuration.nix b/nixos/hosts/hades/lucy/configuration.nix index 0e7dca7..65410c3 100644 --- a/nixos/hosts/hades/lucy/configuration.nix +++ b/nixos/hosts/hades/lucy/configuration.nix @@ -5,8 +5,7 @@ { config, pkgs, ... }: { - imports = [ ./hardware-configuration.nix - ]; + imports = [ ./hardware-configuration.nix ]; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions @@ -20,4 +19,7 @@ environment.systemPackages = with pkgs; [ ]; networking.firewall.allowedTCPPorts = [ ]; + + boot.loader.grub.enable = true; + boot.loader.grub.version = 2; }