nix

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

commit db3576146afbf932a3bd9fee49383351addb0c29
parent 7796336a406b0a074ce4004d5c9b597ad06c2878
Author: mtmn <miro@haravara.org>
Date:   Wed,  8 Apr 2026 00:05:19 +0200

void: install packages

Diffstat:
Mhosts/void/default.nix | 27++++++++++++++++-----------
1 file changed, 16 insertions(+), 11 deletions(-)

diff --git a/hosts/void/default.nix b/hosts/void/default.nix @@ -13,6 +13,7 @@ bear bmake ctags + biome entr act hyperfine @@ -128,12 +129,16 @@ pwru ]; - beam28 = with pkgs.beam28Packages; [ - erlang - rebar3 - expert - elixir_1_20 - ]; + beam28 = + (with pkgs.beam28Packages; [ + erlang + rebar3 + expert + elixir_1_20 + ]) + ++ (with pkgs; [ + gleam + ]); llm = with pkgs; [ gemini-cli-bin @@ -160,6 +165,7 @@ go = with pkgs; [ go gopls + golangci-lint ]; ocaml = with pkgs; [ @@ -167,13 +173,12 @@ dune ]; - other = with pkgs; [ - biome - gleam - fnlfmt + node = with pkgs; [ + nodejs bun deno - # purescript + purescript + typescript-language-server ]; }; in {