about summary refs log tree commit diff
diff options
context:
space:
mode:
authorlewo <lewo@abesis.fr>2019-03-22 14:40:27 +0100
committerGitHub <noreply@github.com>2019-03-22 14:40:27 +0100
commit715365ee02335b49117ea0a3f95af2ab441f7272 (patch)
tree821d61bd651549d3260fb0de04fd6cbe10e6405a
parentc8a65c2d717c8b1e0c83ae38c7796847221d464d (diff)
parentf116d046f6e79c5400ebb0bdce5d8f4cf33b1015 (diff)
downloadnixlib-715365ee02335b49117ea0a3f95af2ab441f7272.tar
nixlib-715365ee02335b49117ea0a3f95af2ab441f7272.tar.gz
nixlib-715365ee02335b49117ea0a3f95af2ab441f7272.tar.bz2
nixlib-715365ee02335b49117ea0a3f95af2ab441f7272.tar.lz
nixlib-715365ee02335b49117ea0a3f95af2ab441f7272.tar.xz
nixlib-715365ee02335b49117ea0a3f95af2ab441f7272.tar.zst
nixlib-715365ee02335b49117ea0a3f95af2ab441f7272.zip
Merge pull request #58024 from nlewo/openstack-fstype
openstackImage: set the / fsType to reenable root FS resizing
-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 d5e862da0ea4..c2da5d0d2301 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;
     };