Files
dotfiles/home-modules/programming/gleam.nix
2025-05-27 07:15:44 +00:00

10 lines
132 B
Nix

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