Files
Lennart J. Kurzweg (Nx2) 8280a0d245 gleam fix
2024-06-27 12:47:53 +02:00

11 lines
171 B
Nix

{ pkgs, pkgs-unstable, lib, host, ... }:
lib.mkIf (host != "NxACE")
{
home.packages = with pkgs; [
erlang
rebar3
] ++ (with pkgs-unstable; [
gleam
]);
}