Mountoptions.

This commit is contained in:
Joseph Hanson 2024-06-26 10:27:20 -05:00
parent bb256a54d8
commit c101f2b587
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -44,8 +44,10 @@
root = {
type = "zfs_fs";
mountpoint = "/";
options = {
mountOptions = {
ashift = "12";
};
options = {
zfsutil = "";
};
};
@ -53,8 +55,10 @@
nix = {
type = "zfs_fs";
mountpoint = "/nix";
options = {
mountOptions = {
ashift = "12";
};
options = {
zfsutil = "";
};
};
@ -62,8 +66,10 @@
var = {
type = "zfs_fs";
mountpoint = "/var";
options = {
mountOptions = {
ashift = "12";
};
options = {
zfsutil = "";
};
};
@ -71,8 +77,10 @@
home = {
type = "zfs_fs";
mountpoint = "/home";
options = {
mountOptions = {
ashift = "12";
};
options = {
"com.sun:auto-snapshot" = "true";
zfsutil = "";
};