diff --git a/lemmy-container.nix b/lemmy-container.nix index 97591e5..2a35dff 100644 --- a/lemmy-container.nix +++ b/lemmy-container.nix @@ -25,7 +25,10 @@ let ]; ports = [ "${toString cfg.port}:80" ]; networks = [ "external_network" ]; - capabilities.SYS_ADMIN = true; + capabilities = { + BPF = true; + SYS_ADMIN = true; + }; }; nixos = { useSystemd = true;