ops/nixos: drop boot.loader.grub.version = 2 - doesn't do anything anymore

This commit is contained in:
Luke Granger-Brown 2023-05-27 20:26:35 +01:00
parent 94427deb9d
commit 4921cabb8a
3 changed files with 0 additions and 3 deletions

View file

@ -72,7 +72,6 @@
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.loader.grub = { boot.loader.grub = {
enable = true; enable = true;
version = 2;
zfsSupport = true; zfsSupport = true;
efiSupport = true; efiSupport = true;
mirroredBoots = map (path: { mirroredBoots = map (path: {

View file

@ -81,7 +81,6 @@ in {
}); });
boot.loader.grub.enable = true; boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
# Networking! # Networking!
networking = { networking = {

View file

@ -25,7 +25,6 @@ in {
# Use GRUB. # Use GRUB.
boot.loader.grub.enable = true; boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/vda"; boot.loader.grub.device = "/dev/vda";
powerManagement.cpuFreqGovernor = lib.mkDefault "performance"; powerManagement.cpuFreqGovernor = lib.mkDefault "performance";