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