1
0

hosts/carbon: Move net-dsl to seperate file

This commit is contained in:
2024-07-14 00:46:22 +02:00
parent 8e88006abe
commit 090e2d6e48
2 changed files with 20 additions and 13 deletions

19
hosts/carbon/net-dsl.nix Normal file
View File

@@ -0,0 +1,19 @@
{ ... }:
{
## DSL-Uplink
networking.vlans."enp1s0.7" = {
id = 7;
interface = "enp1s0";
};
networking.vlans."enp3s0.7" = {
id = 7;
interface = "enp3s0";
};
networking.bridges."net-dsl".interfaces = [
"enp1s0.7"
"enp3s0.7"
];
}