From 9c993f204e165165d676587a82010ba4f4057472 Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Mon, 15 Jun 2026 08:05:53 +0200 Subject: [PATCH] Use netbird from nixpkgs stable again Version in 26.05 is recent enough, so including unstable into the closure is not necessary anymore. --- flake.nix | 3 --- hosts/busch-gpu-docker/default.nix | 2 +- hosts/busch-main-docker/default.nix | 2 +- hosts/julius-framework/default.nix | 3 +-- modules/netbird-client.nix | 2 -- 5 files changed, 3 insertions(+), 9 deletions(-) diff --git a/flake.nix b/flake.nix index 2811507..fa2dae3 100644 --- a/flake.nix +++ b/flake.nix @@ -88,9 +88,6 @@ specialArgs = { inherit inputs outputs username; - pkgs-unstable = import nixpkgs-unstable { - inherit system; - }; }; modules = [ diff --git a/hosts/busch-gpu-docker/default.nix b/hosts/busch-gpu-docker/default.nix index a31b2e3..b2dbb93 100644 --- a/hosts/busch-gpu-docker/default.nix +++ b/hosts/busch-gpu-docker/default.nix @@ -1,4 +1,4 @@ -{ inputs, outputs, config, lib, pkgs, pkgs-unstable, ... }: +{ inputs, outputs, config, lib, pkgs, ... }: { imports = diff --git a/hosts/busch-main-docker/default.nix b/hosts/busch-main-docker/default.nix index 6df1d21..efe3299 100644 --- a/hosts/busch-main-docker/default.nix +++ b/hosts/busch-main-docker/default.nix @@ -1,4 +1,4 @@ -{ inputs, outputs, config, lib, pkgs, pkgs-unstable, ... }: +{ inputs, outputs, config, lib, pkgs, ... }: { imports = diff --git a/hosts/julius-framework/default.nix b/hosts/julius-framework/default.nix index 9292f2d..b3c7505 100644 --- a/hosts/julius-framework/default.nix +++ b/hosts/julius-framework/default.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -{ inputs, outputs, config, pkgs, pkgs-unstable, ... }: +{ inputs, outputs, config, pkgs, ... }: { imports = @@ -51,7 +51,6 @@ services.resolved.enable = true; services.netbird = { - package = pkgs-unstable.netbird; useRoutingFeatures = "client"; clients.wt0 = { hardened = true; diff --git a/modules/netbird-client.nix b/modules/netbird-client.nix index 8477d00..897a192 100644 --- a/modules/netbird-client.nix +++ b/modules/netbird-client.nix @@ -1,6 +1,5 @@ { pkgs, - pkgs-unstable, utils, config, lib, @@ -46,7 +45,6 @@ in { config = lib.mkIf cfg.enable { services.netbird = { - package = pkgs-unstable.netbird; useRoutingFeatures = "both"; clients.wt0 = { hardened = false;