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 = { root = {
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/"; mountpoint = "/";
options.zfsutil = "";
}; };
nix = { nix = {
type = "zfs_fs"; type = "zfs_fs";
options.mountpoint = "/nix"; options.mountpoint = "/nix";
options.zfsutil = "";
}; };
var = { var = {
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/var"; mountpoint = "/var";
options.zfsutil = "";
}; };
home = { home = {
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/home"; mountpoint = "/home";
options."com.sun:auto-snapshot" = "true" options."com.sun:auto-snapshot" = "true";
options.zfsutil = "";
}; };
}; };
}; };