Add broken workaround to fix nixos deployment
ci/woodpecker/push/deploy Pipeline failed Details

This commit is contained in:
Ciapa 2024-05-20 16:08:27 +02:00
parent 6f92c589c3
commit 6d826ee4d2
1 changed files with 2 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
{ {
networking.firewall.allowedTCPPorts = [ ]; networking.firewall.allowedTCPPorts = [ 6080 ];
services.transfer-sh = { services.transfer-sh = {
enable = true; enable = true;
settings = { settings = {
@ -12,8 +12,5 @@
PURGE_DAYS = "90"; PURGE_DAYS = "90";
}; };
}; };
systemd.services.transfer-sh.serviceConfig.ReadWritePaths = lib.mkForce [ systemd.services.transfer-sh.serviceConfig.ReadWritePaths = lib.mkForce "/mnt/data/transfer-sh";
"/mnt/data/transfer-sh/temp"
"/mnt/data/transfer-sh/store"
];
} }