No include files for firejail

I cant find the following include files, which I want to add to my firejail config.

include /etc/firejail/disable-common.inc
include /etc/firejail/disable-devel.inc
include /etc/firejail/disable-interpreters.inc
include /etc/firejail/disable-programs.inc

I’m using a config in /.config/firejail, since I can’t configure it through Nix. The program itself works. I’m on Nix 2.24.15

They are in the Nix-store inside the folder for firejail. For me, e.g.,:

/nix/store/s310d8wx36yk4d7dag600spxnjzlmlqv-firejail-0.9.74/etc/firejail/disable-common.inc

If you want to reference them in a local config, the largest issue is probably that this path will change whenever there’s an update of firejail or it’s dependencies. You probably want to generate the local config from your NixOS config and if it’s just a template where a path placeholder is replaced with the current firejail path.

Or alternatively use your NixOS config to copy/symlink them to a known location and then reference them there from your local config.

Thanks. Though, that’s a bummer. I moved away from doing it in the config, since this was too hard. But I might try again.