summary refs log tree commit diff
path: root/nixos/modules/virtualisation/openstack-config.nix
diff options
context:
space:
mode:
authorAntoine Eiche <lewo@abesis.fr>2019-03-21 10:04:07 +0100
committerAntoine Eiche <lewo@abesis.fr>2019-03-21 10:04:07 +0100
commitf116d046f6e79c5400ebb0bdce5d8f4cf33b1015 (patch)
treee0407f9ba62a83337efcb44d55dbba99fedb0745 /nixos/modules/virtualisation/openstack-config.nix
parentde0612c46cf17a368e92eaac91fd94affbe36488 (diff)
downloadnixpkgs-f116d046f6e79c5400ebb0bdce5d8f4cf33b1015.tar
nixpkgs-f116d046f6e79c5400ebb0bdce5d8f4cf33b1015.tar.gz
nixpkgs-f116d046f6e79c5400ebb0bdce5d8f4cf33b1015.tar.bz2
nixpkgs-f116d046f6e79c5400ebb0bdce5d8f4cf33b1015.tar.lz
nixpkgs-f116d046f6e79c5400ebb0bdce5d8f4cf33b1015.tar.xz
nixpkgs-f116d046f6e79c5400ebb0bdce5d8f4cf33b1015.tar.zst
nixpkgs-f116d046f6e79c5400ebb0bdce5d8f4cf33b1015.zip
openstackImage: set the / fsType to reenable root FS resizing
Since 34234dcb511066dd1e4fe75d80ee89519a8c8001, the reisizefs tool is
embeded only if the `fsType` starts with `ext`. The default `fsType`
value is `auto`.
Diffstat (limited to 'nixos/modules/virtualisation/openstack-config.nix')
-rw-r--r--nixos/modules/virtualisation/openstack-config.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/virtualisation/openstack-config.nix b/nixos/modules/virtualisation/openstack-config.nix
index d5e862da0ea..c2da5d0d230 100644
--- a/nixos/modules/virtualisation/openstack-config.nix
+++ b/nixos/modules/virtualisation/openstack-config.nix
@@ -20,6 +20,7 @@ in
   config = {
     fileSystems."/" = {
       device = "/dev/disk/by-label/nixos";
+      fsType = "ext4";
       autoResize = true;
     };