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; }