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