config

NixOS config
Log | Files | Refs | README | LICENSE

commit 697dd243f0eaa0a8d7c2b0857a8bccace31e9470 (tree)
parent bd752fa150af2ea2cf3eb9d7001f5da85077b124
Author: Motiejus Jakštys <motiejus@jakstys.lt>
Date:   Mon, 19 Aug 2024 15:11:33 +0300

pkgs-unstable: override Go centrally

so all plugins are built with it.

Diffstat:
Mflake.nix | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 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; }) ]; + }; }) ];