fix: mounts

This commit is contained in:
Moritz Böhme 2025-08-26 20:02:30 +02:00
parent e6ae05f624
commit f974f2c13e
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9

View file

@ -43,17 +43,22 @@ in {
rootFsOptions = {
compression = "zstd";
"com.sun:auto-snapshot" = "false";
"canmount" = "noauto";
};
mountpoint = null;
datasets = {
music = {
type = "zfs_fs";
mountpoint = "/data/music";
options."com.sun:auto-snapshot" = "true";
options."canmount" = "noauto";
};
nixarr = {
type = "zfs_fs";
mountpoint = "/data/nixarr";
options."com.sun:auto-snapshot" = "true";
options."canmount" = "noauto";
};
};
};