2016-02-17 12:02:59 +00:00
|
|
|
# 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.
|
2015-09-27 20:01:43 +01:00
|
|
|
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
2016-08-31 04:06:46 +01:00
|
|
|
with lib;
|
|
|
|
|
2015-09-27 20:01:43 +01:00
|
|
|
{
|
2016-02-17 12:02:59 +00:00
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
virtualisation.growPartition = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.virtualisation.growPartition {
|
|
|
|
|
2015-09-27 20:01:43 +01:00
|
|
|
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
|
2016-02-17 11:59:51 +00:00
|
|
|
copy_bin_and_libs ${pkgs.utillinux}/sbin/lsblk
|
2016-11-17 14:14:52 +00:00
|
|
|
cp -v ${pkgs.cloud-utils}/bin/.growpart-wrapped $out/bin/growpart
|
2015-09-27 20:01:43 +01:00
|
|
|
ln -s sed $out/bin/gnused
|
|
|
|
'';
|
|
|
|
|
|
|
|
boot.initrd.postDeviceCommands = ''
|
2016-02-17 11:59:51 +00:00
|
|
|
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}"
|
2015-09-28 20:50:22 +01:00
|
|
|
udevadm settle
|
|
|
|
fi
|
2015-09-27 20:01:43 +01:00
|
|
|
'';
|
2016-02-17 12:02:59 +00:00
|
|
|
|
2015-09-27 20:01:43 +01:00
|
|
|
};
|
2016-02-17 12:02:59 +00:00
|
|
|
|
2015-09-27 20:01:43 +01:00
|
|
|
}
|