diff --git a/configuration.nix b/configuration.nix index 15447af..48fca0c 100644 --- a/configuration.nix +++ b/configuration.nix @@ -32,6 +32,18 @@ # Set the system version system.stateVersion = "unstable"; + + # add nameserver to be able to resolve names in local network + networking = { + nameservers = [ "192.168.1.1" ]; + search = [ "lan" ]; + domain = "lan"; + }; + + + + + # Enable OpenSSH services.sshd.enable = true;