diff options
author | Lily Foster <lily@lily.flowers> | 2022-12-16 16:32:44 -0500 |
---|---|---|
committer | Jörg Thalheim <joerg@thalheim.io> | 2022-12-23 17:43:40 +0100 |
commit | 71a30f9e74141918e98a6bb6457dc97f158d988e (patch) | |
tree | 54d23b67c545b65a2d16f9e830e4a29505f5d571 /example | |
parent | 8ae729e9be221bfc9fe4ade4195f42f8d4f2e757 (diff) |
types: pass through mountOptions to _config for all types
Diffstat (limited to 'example')
-rw-r--r-- | example/complex.nix | 2 | ||||
-rw-r--r-- | example/luks-lvm.nix | 4 | ||||
-rw-r--r-- | example/lvm-raid.nix | 2 | ||||
-rw-r--r-- | example/zfs-over-legacy.nix | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/example/complex.nix b/example/complex.nix index 590dd9b..b361196 100644 --- a/example/complex.nix +++ b/example/complex.nix @@ -109,7 +109,7 @@ type = "filesystem"; format = "ext4"; mountpoint = "/ext4_on_lvm"; - options = [ + mountOptions = [ "defaults" ]; }; diff --git a/example/luks-lvm.nix b/example/luks-lvm.nix index af1c4a3..a6879ce 100644 --- a/example/luks-lvm.nix +++ b/example/luks-lvm.nix @@ -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" ]; }; diff --git a/example/lvm-raid.nix b/example/lvm-raid.nix index 8622238..70ea197 100644 --- a/example/lvm-raid.nix +++ b/example/lvm-raid.nix @@ -89,7 +89,7 @@ type = "filesystem"; format = "ext4"; mountpoint = "/"; - options = [ + mountOptions = [ "defaults" ]; }; diff --git a/example/zfs-over-legacy.nix b/example/zfs-over-legacy.nix index 974af35..8e02b00 100644 --- a/example/zfs-over-legacy.nix +++ b/example/zfs-over-legacy.nix @@ -17,7 +17,7 @@ type = "filesystem"; format = "vfat"; mountpoint = "/boot"; - options = [ + mountOptions = [ "defaults" ]; }; |