Commit c60d950510e3
Changed files (3)
tmp
nixos-configuration
machine
tmp/nixos-configuration/machine/honshu.nix
@@ -5,7 +5,8 @@ with import ../assets/machines.nix; {
networking = {
firewall.enable = false; # we are in safe territory :D
bridges.br1.interfaces = [ "eno1" ];
- interfaces.eno1 = {
+ useDHCP = false;
+ interfaces.br1 = {
useDHCP = true;
};
};
tmp/nixos-configuration/machine/okinawa.nix
@@ -9,7 +9,7 @@ with import ../assets/machines.nix; {
firewall.enable = false; # we are in safe territory :D
bridges.br1.interfaces = [ "enp0s31f6" ];
useDHCP = false;
- interfaces.enp0s31f6 = {
+ interfaces.br1 = {
useDHCP = true;
};
};
tmp/nixos-configuration/machine/sakhalin.nix
@@ -8,7 +8,8 @@ with import ../assets/machines.nix; {
networking = {
firewall.enable = false; # we are in safe territory :D
bridges.br1.interfaces = [ "enp0s31f6" ];
- interfaces.enp0s31f6 = {
+ useDHCP = false;
+ interfaces.br1 = {
useDHCP = true;
};
};