add unbound to server1
nixos config pipeline / show-flake (push) Successful in 23s
nixos config pipeline / deploy (push) Successful in 55s

This commit is contained in:
smayzy
2025-08-28 14:23:39 +02:00
parent 65ffb35fd0
commit ffec6e9b29
3 changed files with 69 additions and 4 deletions
+11 -4
View File
@@ -15,10 +15,17 @@
smayzy = {
server.enable = true;
containers.nixos.httpd = {
enable = true;
bridge = "br0";
ip = "192.168.1.201/24";
containers.nixos= {
httpd = {
enable = true;
bridge = "br0";
ip = "192.168.1.201/24";
};
unbound = {
enable = true;
bridge = "br0";
ip = "192.168.1.202/24";
};
};
};