adds backup ZFS mount points to configuration

This commit is contained in:
Menno van Leeuwen 2024-11-16 14:06:15 +01:00
parent aef9670f74
commit fb9219719d
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -66,6 +66,17 @@ in
boot.kernelParams = [ "zfs.zfs_compressed_arc_enabled=1" ]; boot.kernelParams = [ "zfs.zfs_compressed_arc_enabled=1" ];
fileSystems = { fileSystems = {
# backup ZFS mount points
"/mnt/backups/photos" = {
device = "backup/photos-duplicati";
fsType = "zfs";
};
"/mnt/backups/services" = {
device = "backup/services-duplicati";
fsType = "zfs";
};
# datapool ZFS mount points
"/mnt/ai" = { "/mnt/ai" = {
device = "datapool/ai"; device = "datapool/ai";
fsType = "zfs"; fsType = "zfs";