Compare commits

..

No commits in common. "e5d5847b89e9627a0442b2146cbbe3cce60cf343" and "69216c6b4cc00209cd2f8effdf46e0d159b4029d" have entirely different histories.

4 changed files with 6 additions and 7 deletions

View File

@ -133,7 +133,7 @@
(vm.lvmDisk "media") (vm.lvmDisk "media")
(vm.lvmDisk "minio") (vm.lvmDisk "minio")
(vm.lvmDisk "nix-cache") (vm.lvmDisk "nix-atticd")
(vm.lvmDisk "jam") (vm.lvmDisk "jam")
]); ]);
}; };

View File

@ -240,8 +240,7 @@ in
recommendedTlsSettings = true; recommendedTlsSettings = true;
recommendedBrotliSettings = true; recommendedBrotliSettings = true;
# Uh so nginx is hanging with zstd enabled... maybe let's not for now recommendedZstdSettings = true;
# recommendedZstdSettings = true;
clientMaxBodySize = "0"; clientMaxBodySize = "0";
serverTokens = true; serverTokens = true;
resolver = { resolver = {

View File

@ -33,7 +33,7 @@ in
{ {
fileSystems = { fileSystems = {
"/var/lib/harmonia" = { "/var/lib/harmonia" = {
device = "/mnt/nix-cache"; device = "/mnt/atticd/harmonia";
options = [ "bind" ]; options = [ "bind" ];
}; };
}; };

View File

@ -94,8 +94,8 @@ in
device = "/dev/disk/by-label/minio"; device = "/dev/disk/by-label/minio";
fsType = "xfs"; fsType = "xfs";
}; };
"/mnt/nix-cache" = { "/mnt/atticd" = {
device = "/dev/disk/by-label/nix-cache"; device = "/dev/disk/by-label/atticd";
fsType = "ext4"; fsType = "ext4";
}; };
}; };
@ -206,7 +206,7 @@ in
object = { object = {
bindMounts = { bindMounts = {
"/mnt/minio".readOnly = false; "/mnt/minio".readOnly = false;
"/mnt/nix-cache".readOnly = false; "/mnt/atticd".readOnly = false;
}; };
}; };
toot = {}; toot = {};