types: pass through mountOptions to _config for all types

This commit is contained in:
Lily Foster 2022-12-16 16:32:44 -05:00 committed by Jörg Thalheim
parent 8ae729e9be
commit 71a30f9e74
5 changed files with 14 additions and 16 deletions

View file

@ -109,7 +109,7 @@
type = "filesystem";
format = "ext4";
mountpoint = "/ext4_on_lvm";
options = [
mountOptions = [
"defaults"
];
};

View file

@ -17,7 +17,7 @@
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
options = [
mountOptions = [
"defaults"
];
};
@ -52,7 +52,7 @@
type = "filesystem";
format = "ext4";
mountpoint = "/";
options = [
mountOptions = [
"defaults"
];
};

View file

@ -89,7 +89,7 @@
type = "filesystem";
format = "ext4";
mountpoint = "/";
options = [
mountOptions = [
"defaults"
];
};

View file

@ -17,7 +17,7 @@
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
options = [
mountOptions = [
"defaults"
];
};