From a5a6d77508dfd515e5f94ad92d2dfb9065e787c0 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Thu, 26 Mar 2020 05:39:35 +0000 Subject: [PATCH] azure: boot.growPartition = true --- nixos/modules/virtualisation/azure-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/virtualisation/azure-common.nix b/nixos/modules/virtualisation/azure-common.nix index 03239991b95..8efa177e30d 100644 --- a/nixos/modules/virtualisation/azure-common.nix +++ b/nixos/modules/virtualisation/azure-common.nix @@ -15,6 +15,8 @@ with lib; boot.loader.grub.version = 2; boot.loader.timeout = 0; + boot.growPartition = true; + # Don't put old configurations in the GRUB menu. The user has no # way to select them anyway. boot.loader.grub.configurationLimit = 0;