nix

configuration files that power my machines
Log | Files | Refs | README | LICENSE

commit 40ac133be034513b482b8303b72ca3f2c847cb58
parent ad22327229f376d7b5de73771122d933b9d096fb
Author: mtmn <miro@haravara.org>
Date:   Tue, 14 Apr 2026 23:11:20 +0200

void: install ghc

Diffstat:
Mhosts/void/default.nix | 24++++++++++++++++++------
1 file changed, 18 insertions(+), 6 deletions(-)

diff --git a/hosts/void/default.nix b/hosts/void/default.nix @@ -64,6 +64,7 @@ hledger hledger-iadd rainfrog + tokyocabinet ]; vcs = with pkgs; [ @@ -91,6 +92,7 @@ statix nix-diff nix-output-monitor + niv ]; net = with pkgs; [ @@ -135,12 +137,6 @@ fnlfmt ]); - javascript = with pkgs; [ - nodejs - esbuild - purescript - ]; - erlang = (with pkgs.beam28Packages; [ erlang @@ -150,10 +146,26 @@ gleam ]); + haskell = + (with pkgs.haskell.compiler; [ + ghc9124 + ]) + ++ (with pkgs.haskellPackages; [ + Cabal_3_16_1_0 + stack + purescript + purenix + ]) + ++ (with pkgs; [ + cabal2nix + ]); + other = with pkgs; [ miniserve babashka feather + nodejs + esbuild picard rustup ];