mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-02-23 16:15:51 -06:00
20 lines
254 B
Nix
20 lines
254 B
Nix
{
|
|
config,
|
|
lib,
|
|
flake,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIfIn;
|
|
|
|
cfg = config.oizys.languages;
|
|
rocPkgs = flake.pkgs "roc";
|
|
in
|
|
{
|
|
config = mkIfIn "roc" cfg {
|
|
environment.systemPackages = with rocPkgs; [
|
|
cli
|
|
lang-server
|
|
];
|
|
};
|
|
}
|