diff --git a/machines/Everest/configuration.nix b/machines/Everest/configuration.nix index 1d88a68..5db99e7 100755 --- a/machines/Everest/configuration.nix +++ b/machines/Everest/configuration.nix @@ -28,10 +28,14 @@ prefixLength = 24; } ]; }; - defaultGateway = "192.168.0.1"; + # I use networkd, so I need to declare the interface for the default gateway + defaultGateway = { + address = "192.168.0.1"; + interface = "eno1"; + }; nameservers = [ "8.8.8.8" ]; }; - + # Define a user account. Don't forget to set a password with ‘passwd’. users.users.toast = { isNormalUser = true;