nixos/object: Use local storage instead of s3
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 14m46s

This commit is contained in:
2023-11-17 22:14:19 +00:00
parent 4133ed48c5
commit 5766bdda99
5 changed files with 49 additions and 23 deletions

View File

@@ -81,6 +81,7 @@ in
fsType = "ext4";
neededForBoot = true;
};
"/mnt/media" = {
device = "/dev/disk/by-label/media";
fsType = "ext4";
@@ -89,6 +90,10 @@ in
device = "/dev/disk/by-label/minio";
fsType = "xfs";
};
"/mnt/atticd" = {
device = "/dev/disk/by-label/atticd";
fsType = "ext4";
};
};
nix.settings = {
@@ -175,6 +180,7 @@ in
object = {
bindMounts = {
"/mnt/minio".readOnly = false;
"/mnt/atticd".readOnly = false;
};
};
toot = {};