Infini-DL360: remove redundant legacy mountpoint options

This commit is contained in:
Infinidoge 2024-05-05 15:15:34 -04:00
parent 6faae34501
commit 4fb947fc18
No known key found for this signature in database

View file

@ -36,13 +36,13 @@ in
zpool = mapAttrs mkZPool {
zssd = {
datasets = {
nix = mkZfs "/nix" { options.mountpoint = "legacy"; };
persist = mkZfs "/persist" { options.mountpoint = "legacy"; };
nix = mkZfs "/nix" { };
persist = mkZfs "/persist" { };
};
};
zhdd = {
datasets = {
storage = mkZfs "/storage" { options.mountpoint = "legacy"; };
storage = mkZfs "/storage" { };
};
};
};