diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-04-22 22:49:02 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-04-22 22:57:50 +0530 |
commit | fcc33bf3c389dbfce80eafcb1fb5287f1beeebc9 (patch) | |
tree | b95d4715b659e544f3ea846b76a77e6aa9827692 | |
parent | 3eb94fe3e73b3c69ac1c4cf8ddff08855d6144a9 (diff) |
kay/router: change lan nic
-rw-r--r-- | os/kay/modules/router.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/kay/modules/router.nix b/os/kay/modules/router.nix index 9f6b6cd..5b0bda8 100644 --- a/os/kay/modules/router.nix +++ b/os/kay/modules/router.nix @@ -5,7 +5,7 @@ gponHost = "192.168.38.1"; gponPrefix = 24; - lanInterface = "enp8s0f3u1"; + lanInterface = "enp8s0f3u1c2"; bridgeInterface = "lan"; subnet = "192.168.43.0"; prefix = 24; @@ -22,7 +22,7 @@ in { ]; networking = { - bridges.${bridgeInterface}.interfaces = [ /* lanInterface */ ]; + bridges.${bridgeInterface}.interfaces = [ lanInterface ]; nat = { enable = true; |