mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
16 lines
323 B
Nix
16 lines
323 B
Nix
{
|
|
inputs,
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIfIn;
|
|
cfg = config.oizys.languages;
|
|
zig = inputs.zig2nix.outputs.packages.${pkgs.system}.zig.master.bin;
|
|
zls = inputs.zls.outputs.packages.${pkgs.system}.default;
|
|
in {
|
|
config = mkIfIn "zig" cfg {
|
|
environment.systemPackages = [zig zls];
|
|
};
|
|
}
|