diff --git a/hosts/hime/default.nix b/hosts/hime/default.nix index 0c56051..f088709 100644 --- a/hosts/hime/default.nix +++ b/hosts/hime/default.nix @@ -6,9 +6,14 @@ ./hardware-configuration.nix ]; - boot.loader.grub.enable = true; - boot.loader.grub.device = "/dev/sda"; - boot.loader.grub.useOSProber = true; + boot.loader = { + grub = { + enable = true; + configurationLimit = 5; + device = "/dev/sda"; + useOSProber = false; + }; + }; networking.hostName = "hime"; networking.networkmanager.enable = true;