diff options
author | Ben Sima <ben@bsima.me> | 2024-05-03 22:34:10 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-05-09 21:38:52 -0400 |
commit | d71c6f8c5955e8a9861e3f3957b293a369aac954 (patch) | |
tree | da77bbbec8e082a77c0d553cf2216dce9b4ced0b /Biz/Bild/Nixpkgs.nix | |
parent | d36b4360c9c359e6eea480b39e9699b1deae70f1 (diff) |
Switch to nixpkgs-23.11, ghc 9.6.3
This brings a bunch of improvements. I got rid of some custom packages, I can
now build exllama without using a non-default cuda version. Oh yeah and I get to
use GHC 9.6.2 now, a huge upgrade from 9.4. Unfortunately I also updated ormolu
and some unrelated formatting changed, but that's life I guess.
Diffstat (limited to 'Biz/Bild/Nixpkgs.nix')
-rw-r--r-- | Biz/Bild/Nixpkgs.nix | 25 |
1 files changed, 9 insertions, 16 deletions
diff --git a/Biz/Bild/Nixpkgs.nix b/Biz/Bild/Nixpkgs.nix index 3de56c4..8bc9cad 100644 --- a/Biz/Bild/Nixpkgs.nix +++ b/Biz/Bild/Nixpkgs.nix @@ -11,41 +11,34 @@ let system = __currentSystem; + # override pinned deps with our sources, this must come before other + # package overlays, because of the 'null' from 'overrideSource' + depsOverlay = _: pkgs: pkgs.overridePinnedDeps pkgs.overrideSource; + in { - nixos-23_05 = import sources.nixos-23_05 { + nixos-23_11 = import sources.nixos-23_11 { inherit system config; overlays = [ (_: _: { inherit sources; }) (import ./CcacheWrapper.nix) (import ./Functions.nix) - - # override pinned deps with our sources, this must come before other - # package overlays, because of the 'null' from 'overrideSource' - (_: pkgs: pkgs.overridePinnedDeps pkgs.overrideSource) - + depsOverlay (import ./Deps.nix) (import ./Python.nix) (import ./Haskell.nix) ]; }; - nixos-23_11 = import sources.nixos-23_11 { - inherit system config; - overlays = [ - (_: _: { inherit sources; }) - (import ./CcacheWrapper.nix) - (import ./Functions.nix) - (import ./Deps.nix) - ]; - }; - nixos-unstable-small = import sources.nixos-unstable-small { inherit system config; overlays = [ (_: _: { inherit sources; }) (import ./CcacheWrapper.nix) (import ./Functions.nix) + depsOverlay (import ./Deps.nix) + (import ./Python.nix) + (import ./Haskell.nix) ]; }; |