nix: pin ghc (9.6.4)

This commit is contained in:
Léana 江 2024-04-28 12:52:27 +02:00 committed by Léana 江
parent 692c710c43
commit c13b8320fa
3 changed files with 6 additions and 3 deletions

View file

@ -3,15 +3,16 @@
unstable,
myPkgs,
lib,
ghc-pin,
...
}@input:
}:
{
imports = [ ./fonts.nix ];
home.homeDirectory = lib.mkForce "/Users/leana";
home.packages = [
pkgs.ghc
ghc-pin.ghc
pkgs.haskell-language-server
unstable.qmk
unstable.wally-cli

View file

@ -36,6 +36,7 @@ let
config.allowUnfree = true;
};
neovim-pin = import inputs.neovim-pin { inherit system; };
ghc-pin = import inputs.ghc-pin { inherit system; };
custom = import ./custom {
inherit pkgs unstable;
inherit (inputs) opam-nix;
@ -46,7 +47,7 @@ let
inherit pkgs unstable nur;
inherit (custom) myPkgs myLib;
# packages sets
inherit neovim-pin;
inherit neovim-pin ghc-pin;
};
defaultOptions =