add static ids

This commit is contained in:
2023-12-05 11:08:50 +01:00
parent d29a421cc7
commit 28ff135610
2 changed files with 11 additions and 0 deletions

View File

@@ -12,6 +12,7 @@
./utils/modules/netdata.nix ./utils/modules/netdata.nix
# fw # fw
./modules/statidids.nix
./modules/networking.nix ./modules/networking.nix
./modules/firewall.nix ./modules/firewall.nix
./modules/dhcp4.nix ./modules/dhcp4.nix

View File

@@ -0,0 +1,10 @@
{}: {
config.ids = {
uids = {
unbound = 10001;
};
gids = {
unbound = 10001;
}
};
}