summary refs log tree commit diff
path: root/nixos/modules/virtualisation
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/virtualisation')
-rw-r--r--nixos/modules/virtualisation/amazon-image.nix2
-rw-r--r--nixos/modules/virtualisation/azure-common.nix2
-rw-r--r--nixos/modules/virtualisation/google-compute-image.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/virtualisation/amazon-image.nix b/nixos/modules/virtualisation/amazon-image.nix
index dc92e4f609fb..600a29f31bc5 100644
--- a/nixos/modules/virtualisation/amazon-image.nix
+++ b/nixos/modules/virtualisation/amazon-image.nix
@@ -170,7 +170,7 @@ in
 
     # Don't put old configurations in the GRUB menu.  The user has no
     # way to select them anyway.
-    boot.loader.grub.configurationLimit = 1;
+    boot.loader.grub.configurationLimit = 0;
 
     # Allow root logins only using the SSH key that the user specified
     # at instance creation time.
diff --git a/nixos/modules/virtualisation/azure-common.nix b/nixos/modules/virtualisation/azure-common.nix
index a6368eb2c625..47022c6887c3 100644
--- a/nixos/modules/virtualisation/azure-common.nix
+++ b/nixos/modules/virtualisation/azure-common.nix
@@ -14,7 +14,7 @@ with lib;
 
   # Don't put old configurations in the GRUB menu.  The user has no
   # way to select them anyway.
-  boot.loader.grub.configurationLimit = 1;
+  boot.loader.grub.configurationLimit = 0;
 
   fileSystems."/".device = "/dev/disk/by-label/nixos";
 
diff --git a/nixos/modules/virtualisation/google-compute-image.nix b/nixos/modules/virtualisation/google-compute-image.nix
index eea6c646d483..ee5485071a35 100644
--- a/nixos/modules/virtualisation/google-compute-image.nix
+++ b/nixos/modules/virtualisation/google-compute-image.nix
@@ -106,7 +106,7 @@ in
 
   # Don't put old configurations in the GRUB menu.  The user has no
   # way to select them anyway.
-  boot.loader.grub.configurationLimit = 1;
+  boot.loader.grub.configurationLimit = 0;
 
   # Allow root logins only using the SSH key that the user specified
   # at instance creation time.