add cyberchef and correct things in nixos containers
nixos config pipeline / show-flake (push) Successful in 31s
nixos config pipeline / deploy (push) Successful in 7s

This commit is contained in:
smayzy
2025-08-30 20:27:24 +02:00
parent 325a193a38
commit 9037f01470
8 changed files with 100 additions and 8 deletions
+3
View File
@@ -2,6 +2,7 @@
let
inherit (lib) mkIf mkOption types;
cfg = config.smayzy.containers.nixos.unbound;
net = config.smayzy.containers.networking;
in
{
options.smayzy.containers.nixos.unbound = {
@@ -61,6 +62,8 @@ in
};
};
};
networking.defaultGateway = net.gateway;
networking.nameservers = net.dns;
networking.firewall.allowedTCPPorts = [ 53 ];
networking.firewall.allowedUDPPorts = [ 53 ];
};