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
+21 -8
View File
@@ -15,16 +15,29 @@
smayzy = {
server.enable = true;
containers.nixos= {
httpd = {
enable = true;
containers = {
networking = {
bridge = "br0";
ip = "192.168.1.201/24";
dns = [ "192.168.1.202" ];
gateway = "192.168.1.254";
};
unbound = {
enable = true;
bridge = "br0";
ip = "192.168.1.202/24";
nixos = {
httpd = {
enable = true;
bridge = "br0";
ip = "192.168.1.201/24";
};
unbound = {
enable = true;
bridge = "br0";
ip = "192.168.1.202/24";
};
};
docker = {
cyberchef = {
enable = true;
port = 6900;
};
};
};
};