From 5196a6b017b86a88506e140d2c4b66a3b9f85049 Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Wed, 12 Jul 2023 22:09:52 +0000 Subject: [PATCH] Add briot on starlight --- flake.lock | 18 +++++++++--------- system/starlight/default.nix | 9 +++++++++ 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index 8560ec1..36fc6ca 100644 --- a/flake.lock +++ b/flake.lock @@ -23,11 +23,11 @@ }, "nixos-hardware": { "locked": { - "lastModified": 1688798314, - "narHash": "sha256-MFG5rx7L756rtrPHsL662m64AZ4sKqUcApaiYgSKfNM=", + "lastModified": 1689060619, + "narHash": "sha256-vODUkZLWFVCvo1KPK3dC2CbXjxa9antEn5ozwlcTr48=", "owner": "nixos", "repo": "nixos-hardware", - "rev": "47dca15d86fdd2eabcf434d7cc0b5baa8d1a463c", + "rev": "44bc025007e5fcc10dbc3d9f96dcbf06fc0e8c1c", "type": "github" }, "original": { @@ -38,11 +38,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1688764204, - "narHash": "sha256-FsvK+tIvelCI0tWwlMDKfiyb7P/KfxpGbXMrdCKiT8s=", + "lastModified": 1689137672, + "narHash": "sha256-QZoHxr0a73x6rQcAo5CiwYpysHbSnk7lAR8/16um7mM=", "owner": "nixos", "repo": "nixpkgs", - "rev": "d8bb6c681cf86265fdcf3cc3119f757bbb085835", + "rev": "98da3dd0de6660d4abed7bb74e748694bd803413", "type": "github" }, "original": { @@ -54,11 +54,11 @@ }, "nixpkgs-unstable": { "locked": { - "lastModified": 1688679045, - "narHash": "sha256-t3xGEfYIwhaLTPU8FLtN/pLPytNeDwbLI6a7XFFBlGo=", + "lastModified": 1689098530, + "narHash": "sha256-fxc/9f20wRyo/5ydkmZkX/Sh/ULa7RcT8h+cUv8p/44=", "owner": "nixos", "repo": "nixpkgs", - "rev": "3c7487575d9445185249a159046cc02ff364bff8", + "rev": "f2406198ea0e4e37d4380d0e20336c575b8f8ef9", "type": "github" }, "original": { diff --git a/system/starlight/default.nix b/system/starlight/default.nix index 82c9ded..fbf0fe6 100644 --- a/system/starlight/default.nix +++ b/system/starlight/default.nix @@ -53,6 +53,15 @@ interfaces = [ "br0.5" ]; }; + networking.vlans."br0.4" = { + id = 4; + interface = "br0"; + }; + networking.bridges.briot = { + rstp = false; + interfaces = [ "br0.4" ]; + }; + services.openssh.extraConfig = '' HostCertificate ${./starlight-cert.pub} '';