mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
21 lines
244 B
Nix
21 lines
244 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIfIn;
|
|
cfg = config.oizys.languages;
|
|
in
|
|
{
|
|
config = mkIfIn "nim" cfg {
|
|
environment.systemPackages = with pkgs; [
|
|
nim
|
|
|
|
nim-atlas
|
|
nimble
|
|
nimlsp
|
|
];
|
|
};
|
|
}
|