From 697dd243f0eaa0a8d7c2b0857a8bccace31e9470 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Mon, 19 Aug 2024 15:11:33 +0300 Subject: [PATCH] pkgs-unstable: override Go centrally so all plugins are built with it. --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index da6c883..6333470 100644 --- a/flake.nix +++ b/flake.nix @@ -100,7 +100,10 @@ tmuxbash = super.callPackage ./pkgs/tmuxbash.nix { }; nicer = super.callPackage ./pkgs/nicer.nix { }; - pkgs-unstable = import nixpkgs-unstable { inherit (super) system; }; + pkgs-unstable = import nixpkgs-unstable { + inherit (super) system; + overlays = [ (_self: super: { go = super.go_1_23; }) ]; + }; }) ];