add zfsutil as mount option
This commit is contained in:
parent
b7a21a7dbe
commit
12b9771c04
1 changed files with 5 additions and 1 deletions
|
@ -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 = "";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue