oizys/modules/languages/roc.nix

20 lines
283 B
Nix
Raw Permalink Normal View History

2024-06-12 10:42:18 -05:00
{
config,
lib,
pkgs,
inputs,
...
}:
let
inherit (lib) mkIfIn;
cfg = config.oizys.languages;
rocPkgs = inputs.roc.packages.${pkgs.system};
in
{
config = mkIfIn "roc" cfg {
environment.systemPackages = with rocPkgs; [
2024-06-17 09:49:31 -05:00
full # cli + lang_server
2024-06-12 10:42:18 -05:00
];
};
}