Mountoptions.
This commit is contained in:
parent
bb256a54d8
commit
c101f2b587
1 changed files with 12 additions and 4 deletions
|
@ -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 = "";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue