machines: fort: mount additional data volume
Some checks failed
flake / build (push) Has been cancelled

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2024-08-17 00:58:01 +02:00
parent c44b3b0e77
commit 5f133d017e
Signed by: c8h4
GPG key ID: 73D5E7FDEE3DE49A

View file

@ -68,7 +68,13 @@ in {
options = [ "noatime" "compress=zstd" "subvol=@log" "discard=async" ];
};
services.btrfs.autoScrub.fileSystems = [ "/" ];
fileSystems."/mnt/data" = {
device = "/dev/disk/by-uuid/6dac6942-330c-429c-8992-8b11f5c137bb";
fsType = "btrfs";
options = [ "noatime" "discard=async" ];
};
services.btrfs.autoScrub.fileSystems = [ "/" "/mnt/data" ];
services.nginx.appendConfig = ''
worker_processes auto;