migrate containers and services to data drive

This commit is contained in:
♥ Minnie ♥ 2024-09-07 15:49:04 +08:00
parent c1a5ed1d4f
commit 77d82dd853
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -60,13 +60,13 @@ in {
};
fileSystems."/srv/containers" = {
device = "/dev/disk/by-label/${hostname}";
device = "/dev/disk/by-label/data";
fsType = "btrfs";
options = ["subvol=containers" "compress=zstd"];
};
fileSystems."/srv/services" = {
device = "/dev/disk/by-label/${hostname}";
device = "/dev/disk/by-label/data";
fsType = "btrfs";
options = ["subvol=services" "compress=zstd"];
};