-
-
Save asheshambasta/e85a9ed2ccd5c9c74e425deda1863148 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interfaces.enp4s0.ip4.addresses = [{ | |
address = "192.168.0.200"; | |
prefixLength = 24; | |
}]; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
networking = { | |
hostName = "quasar-nixos-tr"; | |
wireless = { enable = false; }; | |
networkmanager = { enable = true; }; | |
extraHosts = '' | |
192.168.0.145 home-server | |
127.0.0.1 quasar.localhost | |
127.0.0.1 linkerd.service | |
127.0.0.1 redis.service | |
''; | |
interfaces.enp4s0.ip4 = [{ | |
address = "192.168.0.200"; | |
prefixLength = 24; | |
}]; | |
defaultGateway = "192.168.0.1"; | |
nameservers = [ "8.8.8.8" "8.8.4.4" ]; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment