summary refs log tree commit diff
path: root/nixos/modules/virtualisation/grow-partition.nix
diff options
context:
space:
mode:
authorNathan Zadoks <nathan@nathan7.eu>2016-02-17 13:02:59 +0100
committerNathan Zadoks <nathan@nathan7.eu>2016-08-30 16:48:04 -0400
commit346c31000bebfec7cbcf4dbc3276d0af90544351 (patch)
tree122d723fa4983edf129ba90300d824342785b942 /nixos/modules/virtualisation/grow-partition.nix
parent1de8e1b02ef9bd5e65382f0b3998106ffc328094 (diff)
downloadnixpkgs-346c31000bebfec7cbcf4dbc3276d0af90544351.tar
nixpkgs-346c31000bebfec7cbcf4dbc3276d0af90544351.tar.gz
nixpkgs-346c31000bebfec7cbcf4dbc3276d0af90544351.tar.bz2
nixpkgs-346c31000bebfec7cbcf4dbc3276d0af90544351.tar.lz
nixpkgs-346c31000bebfec7cbcf4dbc3276d0af90544351.tar.xz
nixpkgs-346c31000bebfec7cbcf4dbc3276d0af90544351.tar.zst
nixpkgs-346c31000bebfec7cbcf4dbc3276d0af90544351.zip
amazon-grow-partition module: rename to grow-partition
Diffstat (limited to 'nixos/modules/virtualisation/grow-partition.nix')
-rw-r--r--nixos/modules/virtualisation/grow-partition.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/nixos/modules/virtualisation/grow-partition.nix b/nixos/modules/virtualisation/grow-partition.nix
new file mode 100644
index 00000000000..34547905166
--- /dev/null
+++ b/nixos/modules/virtualisation/grow-partition.nix
@@ -0,0 +1,41 @@
+# This module automatically grows the root partition on virtual machines.
+# This allows an instance to be created with a bigger root filesystem
+# than provided by the machine image.
+
+{ config, lib, pkgs, ... }:
+
+{
+
+  options = {
+
+    virtualisation.growPartition = mkOption {
+      type = types.bool;
+      default = true;
+    };
+
+  };
+
+  config = mkIf config.virtualisation.growPartition {
+
+    boot.initrd.extraUtilsCommands = ''
+      copy_bin_and_libs ${pkgs.gawk}/bin/gawk
+      copy_bin_and_libs ${pkgs.gnused}/bin/sed
+      copy_bin_and_libs ${pkgs.utillinux}/sbin/sfdisk
+      copy_bin_and_libs ${pkgs.utillinux}/sbin/lsblk
+      cp -v ${pkgs.cloud-utils}/bin/growpart $out/bin/growpart
+      ln -s sed $out/bin/gnused
+    '';
+
+    boot.initrd.postDeviceCommands = ''
+      rootDevice="${config.fileSystems."/".device}"
+      if [ -e "$rootDevice" ]; then
+        rootDevice="$(readlink -f "$rootDevice")"
+        parentDevice="$(lsblk -npo PKNAME "$rootDevice")"
+        TMPDIR=/run sh $(type -P growpart) "$parentDevice" "''${rootDevice#$parentDevice}"
+        udevadm settle
+      fi
+    '';
+
+  };
+
+}