diff options
author | Jörg Thalheim <joerg@thalheim.io> | 2022-08-26 09:07:24 +0200 |
---|---|---|
committer | Jörg Thalheim <joerg@thalheim.io> | 2022-08-26 09:12:40 +0200 |
commit | 57b7c5506a64e169370f291bffa75d2888027ee9 (patch) | |
tree | 291a7a61b8c302af17ad308ebc5a30b8366bdbf3 /example | |
parent | 05a90d4227dd14ab08fa3982f320ec771e5626db (diff) |
also test zfs filesystem options
Diffstat (limited to 'example')
-rw-r--r-- | example/zfs.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/example/zfs.nix b/example/zfs.nix index e344289..2b56bd7 100644 --- a/example/zfs.nix +++ b/example/zfs.nix @@ -12,11 +12,16 @@ zroot = { type = "zpool"; mode = "mirror"; + rootFsOptions = { + compression = "lz4"; + "com.sun:auto-snapshot" = "false"; + }; datasets = [ { type = "zfs_filesystem"; name = "zfs_fs"; mountpoint = "/zfs_fs"; + options."com.sun:auto-snapshot" = "true"; } { type = "zfs_filesystem"; |