pkgs-unstable: override Go centrally

so all plugins are built with it.
This commit is contained in:
Motiejus Jakštys 2024-08-19 15:11:33 +03:00
parent bd752fa150
commit 697dd243f0
1 changed files with 4 additions and 1 deletions

View File

@ -100,7 +100,10 @@
tmuxbash = super.callPackage ./pkgs/tmuxbash.nix { }; tmuxbash = super.callPackage ./pkgs/tmuxbash.nix { };
nicer = super.callPackage ./pkgs/nicer.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; }) ];
};
}) })
]; ];