diff --git a/flake.lock b/flake.lock index 148f82b..ba66cca 100755 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1699748018, - "narHash": "sha256-28rwXnxgscLkeII6wj44cuP6RuiynhzZSa424ZwGt/s=", + "lastModified": 1706985585, + "narHash": "sha256-ptshv4qXiC6V0GCfpABz88UGGPNwqs5tAxaRUKbk1Qo=", "owner": "nix-community", "repo": "home-manager", - "rev": "50e582b9f91e409ffd2e134017445d376659b32e", + "rev": "1ca210648a6ca9b957efde5da957f3de6b1f0c45", "type": "github" }, "original": { @@ -22,11 +22,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1699099776, - "narHash": "sha256-X09iKJ27mGsGambGfkKzqvw5esP1L/Rf8H3u3fCqIiU=", + "lastModified": 1706732774, + "narHash": "sha256-hqJlyJk4MRpcItGYMF+3uHe8HvxNETWvlGtLuVpqLU0=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "85f1ba3e51676fa8cc604a3d863d729026a6b8eb", + "rev": "b8b232ae7b8b144397fdb12d20f592e5e7c1a64d", "type": "github" }, "original": { diff --git a/modules/virtualization.nix b/modules/virtualization.nix index add68d3..c4bcc74 100755 --- a/modules/virtualization.nix +++ b/modules/virtualization.nix @@ -38,9 +38,4 @@ networking.interfaces.br0.useDHCP = true; - networking.bridges = { - "br0" = { - interfaces = [ "eth0" "wlan0" ]; - }; - }; } diff --git a/systems/aurora.nix b/systems/aurora.nix index 1e2da78..9f6f751 100755 --- a/systems/aurora.nix +++ b/systems/aurora.nix @@ -28,4 +28,10 @@ ]; hardware.opengl.driSupport = true; hardware.opengl.driSupport32Bit = true; + + networking.bridges = { + "br0" = { + interfaces = [ "eth0" ]; + }; + }; } diff --git a/systems/common.nix b/systems/common.nix index a93f1cc..a0a175f 100755 --- a/systems/common.nix +++ b/systems/common.nix @@ -51,9 +51,10 @@ keep-derivations = true; }; }; - system.stateVersion = "23.05"; + system.stateVersion = "24.11"; nixpkgs.config.allowUnfree = true; nixpkgs.config.nvidia.acceptLicense = true; + nixpkgs.config.nvidia.libsOnly = false; # Location & internationalisation time.timeZone = "America/Los_Angeles"; diff --git a/systems/framework.nix b/systems/framework.nix index 79f9901..85fbebd 100755 --- a/systems/framework.nix +++ b/systems/framework.nix @@ -91,4 +91,10 @@ RUNTIME_PM_ON_BAT = "auto"; }; }; + + networking.bridges = { + "br0" = { + interfaces = [ "wlan0" ]; + }; + }; } diff --git a/systems/labby.nix b/systems/labby.nix index b148d41..9cd4d4f 100755 --- a/systems/labby.nix +++ b/systems/labby.nix @@ -20,4 +20,10 @@ hardware.opengl.driSupport = true; hardware.opengl.driSupport32Bit = true; + + networking.bridges = { + "br0" = { + interfaces = [ "eth0" ]; + }; + }; }