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.httpd;
net = config.smayzy.containers.networking;
in
{
options.smayzy.containers.nixos.httpd = {
@@ -32,6 +33,8 @@ in
services.httpd = {
enable = true;
};
networking.defaultGateway = net.gateway;
networking.nameservers = net.dns;
networking.firewall.allowedTCPPorts = [ 80 ];
};
};