about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-02-25 18:20:33 +0100
committerGitHub <noreply@github.com>2024-02-25 18:20:33 +0100
commitf8545e512db35479f01f439c0ef6395c20574b6f (patch)
tree8293f9bca10db732f8d7fea6ebbb5a4ffb8994be
parent8c5a4cfa43d6d493ea12d25aca7025ce25293557 (diff)
parente3d82657a243151e58e6177b270a880d67cea41f (diff)
downloadnixlib-f8545e512db35479f01f439c0ef6395c20574b6f.tar
nixlib-f8545e512db35479f01f439c0ef6395c20574b6f.tar.gz
nixlib-f8545e512db35479f01f439c0ef6395c20574b6f.tar.bz2
nixlib-f8545e512db35479f01f439c0ef6395c20574b6f.tar.lz
nixlib-f8545e512db35479f01f439c0ef6395c20574b6f.tar.xz
nixlib-f8545e512db35479f01f439c0ef6395c20574b6f.tar.zst
nixlib-f8545e512db35479f01f439c0ef6395c20574b6f.zip
Merge pull request #289166 from thanegill/remove-grub-version
treewide: remove deprecated grub.version references
-rw-r--r--nixos/modules/virtualisation/hyperv-image.nix1
-rw-r--r--nixos/modules/virtualisation/linode-config.nix1
-rw-r--r--nixos/modules/virtualisation/vmware-image.nix1
3 files changed, 0 insertions, 3 deletions
diff --git a/nixos/modules/virtualisation/hyperv-image.nix b/nixos/modules/virtualisation/hyperv-image.nix
index efaea0c110d2..fddff7bf1c69 100644
--- a/nixos/modules/virtualisation/hyperv-image.nix
+++ b/nixos/modules/virtualisation/hyperv-image.nix
@@ -60,7 +60,6 @@ in {
     boot.growPartition = true;
 
     boot.loader.grub = {
-      version = 2;
       device = "nodev";
       efiSupport = true;
       efiInstallAsRemovable = true;
diff --git a/nixos/modules/virtualisation/linode-config.nix b/nixos/modules/virtualisation/linode-config.nix
index bbf81bda9c02..209bff57ea8b 100644
--- a/nixos/modules/virtualisation/linode-config.nix
+++ b/nixos/modules/virtualisation/linode-config.nix
@@ -59,7 +59,6 @@ with lib;
 
       grub = {
         enable = true;
-        version = 2;
         forceInstall = true;
         device = "nodev";
 
diff --git a/nixos/modules/virtualisation/vmware-image.nix b/nixos/modules/virtualisation/vmware-image.nix
index a38713b4d4ee..3674b37d0b97 100644
--- a/nixos/modules/virtualisation/vmware-image.nix
+++ b/nixos/modules/virtualisation/vmware-image.nix
@@ -80,7 +80,6 @@ in {
     boot.growPartition = true;
 
     boot.loader.grub = {
-      version = 2;
       device = "nodev";
       efiSupport = true;
       efiInstallAsRemovable = true;