mirror of
https://github.com/nix-community/disko
synced 2024-11-10 14:24:27 +00:00
config: add zfsutil to zfs datasets as appropriate
This commit is contained in:
parent
55197cfc55
commit
088b2a31d0
1 changed files with 2 additions and 0 deletions
|
@ -764,6 +764,7 @@ rec {
|
|||
fileSystems.${config.mountpoint} = {
|
||||
device = config.name;
|
||||
fsType = "zfs";
|
||||
options = lib.optional ((config.options.mountpoint or "") != "legacy") "zfsutil";
|
||||
};
|
||||
});
|
||||
};
|
||||
|
@ -852,6 +853,7 @@ rec {
|
|||
fileSystems.${config.mountpoint} = {
|
||||
device = "${zpool}/${config.name}";
|
||||
fsType = "zfs";
|
||||
options = lib.optional ((config.options.mountpoint or "") != "legacy") "zfsutil";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue