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 = {
|
||||
type = "zfs_fs";
|
||||
mountpoint = "/";
|
||||
options.zfsutil = "";
|
||||
};
|
||||
|
||||
nix = {
|
||||
type = "zfs_fs";
|
||||
options.mountpoint = "/nix";
|
||||
options.zfsutil = "";
|
||||
};
|
||||
|
||||
var = {
|
||||
type = "zfs_fs";
|
||||
mountpoint = "/var";
|
||||
options.zfsutil = "";
|
||||
};
|
||||
|
||||
home = {
|
||||
type = "zfs_fs";
|
||||
mountpoint = "/home";
|
||||
options."com.sun:auto-snapshot" = "true"
|
||||
options."com.sun:auto-snapshot" = "true";
|
||||
options.zfsutil = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue