10 lines
134 B
Nix
10 lines
134 B
Nix
{ pkgs, ... }@all: with all;
|
|
lib.mkIf (hyper.host != "NxACE")
|
|
{
|
|
home.packages = with pkgs; [
|
|
erlang
|
|
rebar3
|
|
gleam
|
|
];
|
|
}
|