add bridge on server1
All checks were successful
nixos config pipeline / show-flake (push) Successful in 31s
nixos config pipeline / deploy (push) Successful in 17s

This commit is contained in:
smayzy 2025-08-26 21:43:31 +02:00
parent ab35d54e05
commit f1259be78c

View File

@ -8,6 +8,11 @@
networking.hostName = "server1";
networking.bridges.br0.interfaces = [ "ens18" ];
networking.interfaces.br0.ipv4.addresses = [ { address = "192.168.1.197"; prefixLength = 24; } ];
networking.defaultGateway = "192.168.1.254";
networking.nameservers = [ "192.168.1.137" "192.168.1.49" ];
smayzy = {
server.enable = true;
};