From 71a30f9e74141918e98a6bb6457dc97f158d988e Mon Sep 17 00:00:00 2001 From: Lily Foster Date: Fri, 16 Dec 2022 16:32:44 -0500 Subject: types: pass through mountOptions to _config for all types --- example/complex.nix | 2 +- example/luks-lvm.nix | 4 ++-- example/lvm-raid.nix | 2 +- example/zfs-over-legacy.nix | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'example') 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" ]; }; -- cgit v1.2.3