oizys/modules/languages/roc.nix

21 lines
281 B
Nix
Raw 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; [
full
lang-server
];
};
}