add zfsutil as mount option

This commit is contained in:
Joseph Hanson 2024-06-24 13:04:35 -05:00
parent b7a21a7dbe
commit 12b9771c04
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -47,22 +47,26 @@
root = {
type = "zfs_fs";
mountpoint = "/";
options.zfsutil = "";
};
nix = {
type = "zfs_fs";
options.mountpoint = "/nix";
options.zfsutil = "";
};
var = {
type = "zfs_fs";
mountpoint = "/var";
options.zfsutil = "";
};
home = {
type = "zfs_fs";
mountpoint = "/home";
options."com.sun:auto-snapshot" = "true"
options."com.sun:auto-snapshot" = "true";
options.zfsutil = "";
};
};
};