Auto-commit: 2026-01-07 13:24:41

This commit is contained in:
2026-01-07 13:24:41 +00:00
parent 72179ba9ed
commit 149519399e

View File

@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
systemd.services.crowdsec-prefix = {
enable = true;
description = "Get IPv6 Prefix to add to Crowdsec Whitelist";
serviceConfig = {
Type = "oneshot";
ExecStart = "/mnt/lilly-ssd/appdata/crowdsec/crowdsec-prefix-change-script/checkprefix.sh";
WorkingDirectory = "/mnt/lilly-ssd/appdata/crowdsec/crowdsec-prefix-change-script";
};
};
}