mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-22 18:21:58 +01:00
fix: use right interface for gateway on niflheim
This commit is contained in:
parent
568fff5582
commit
c2d6d4090d
@ -3,8 +3,16 @@
|
||||
{
|
||||
networking = {
|
||||
hostName = "niflheim";
|
||||
defaultGateway = "176.9.93.193";
|
||||
defaultGateway6 = "fe80::1";
|
||||
|
||||
defaultGateway = {
|
||||
address = "176.9.93.193";
|
||||
interface = "enp3s0";
|
||||
};
|
||||
|
||||
defaultGateway6 = {
|
||||
address = "fe80::1";
|
||||
interface = "enp3s0";
|
||||
};
|
||||
|
||||
nameservers = [
|
||||
"1.1.1.1"
|
||||
|
Loading…
Reference in New Issue
Block a user