diff options
author | Ben Sima <ben@bsima.me> | 2021-08-30 20:19:13 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-11-26 13:47:38 -0500 |
commit | 09882de5f3cbfd62d59b9ec94723a90d67555b7d (patch) | |
tree | 69f1c1fb85b7706e83be35c93fbd9d63d1b07dec /Biz/Dev/Configuration.nix | |
parent | 1a5ea40711e35f8b108d10a0667423926d63fd34 (diff) |
Update to ghc 8.10.4
This also makes some changes to the build tooling to clean up the environment a
bit, and get us closer to 'bild -s'.
Diffstat (limited to 'Biz/Dev/Configuration.nix')
-rw-r--r-- | Biz/Dev/Configuration.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Biz/Dev/Configuration.nix b/Biz/Dev/Configuration.nix index fcd55b7..2dcc816 100644 --- a/Biz/Dev/Configuration.nix +++ b/Biz/Dev/Configuration.nix @@ -1,6 +1,7 @@ { config, lib, pkgs, ... }: let + ghcCompiler = (import ../Bild/Constants.nix).ghcCompiler; ports = import ../Cloud/Ports.nix; in { networking = { @@ -114,7 +115,7 @@ in { port = ports.hoogle; home = "//hoogle.simatime.com"; packages = import ../Bild/Deps/Haskell.nix; - haskellPackages = pkgs.haskell.packages.ghc884; + haskellPackages = pkgs.haskell.packages.${ghcCompiler}; host = "0.0.0.0"; }; |