hosts/TITAN: move IPFS to new disk

This commit is contained in:
Max Headroom 2022-06-13 22:34:15 +02:00
parent a43985a70f
commit 9a9c63a392
2 changed files with 6 additions and 1 deletions

View file

@ -35,6 +35,11 @@
fsType = "btrfs"; fsType = "btrfs";
}; };
fileSystems."/srv/freezer" = {
device = "/dev/mapper/tank-freezer";
fsType = "xfs";
};
fileSystems."/nix" = { fileSystems."/nix" = {
device = "/dev/disk/by-partlabel/nixstore"; device = "/dev/disk/by-partlabel/nixstore";
fsType = "xfs"; fsType = "xfs";

View file

@ -13,7 +13,7 @@
} }
]; ];
services.ipfs.dataDir = "/persist/ipfs"; services.ipfs.dataDir = "/srv/freezer/ipfs";
services.lidarr.dataDir = "/persist/db/lidarr"; services.lidarr.dataDir = "/persist/db/lidarr";
services.jackett.dataDir = "/persist/db/jackett"; services.jackett.dataDir = "/persist/db/jackett";