add cyberchef and correct things in nixos containers
This commit is contained in:
@@ -20,6 +20,21 @@
|
||||
hyprland.enable = true;
|
||||
kde.enable = true;
|
||||
docker.enable = true;
|
||||
containers = {
|
||||
nixos = {
|
||||
};
|
||||
docker = {
|
||||
cyberchef = {
|
||||
enable = true;
|
||||
port = 6900;
|
||||
};
|
||||
};
|
||||
networking = {
|
||||
bridge = "br0";
|
||||
dns = [ "192.168.1.202" ];
|
||||
gateway = "192.168.1.254";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user