oizys/modules/langs/nim.nix

27 lines
461 B
Nix
Raw Normal View History

2024-01-23 19:13:42 -06:00
{
nixpkgs,
config,
lib,
pkgs,
...
}: let
2024-01-23 15:36:52 -06:00
inherit (lib) mkEnableOption mkIf;
2024-01-25 12:23:32 -06:00
cfg = config.languages;
2024-01-23 19:13:42 -06:00
in {
2024-01-25 12:23:32 -06:00
options.languages.nim = mkEnableOption "nim";
config = mkIf cfg.nim {
2024-01-23 19:13:42 -06:00
nixpkgs.overlays = [
(import ../../overlays/nimlsp {})
(import ../../overlays/nimble {})
(import ../../overlays/nim-atlas {})
];
2024-01-23 11:51:13 -06:00
2024-01-23 19:13:42 -06:00
environment.systemPackages = with pkgs; [
nim-atlas
nim
nimble
nimlsp
];
};
2024-01-23 11:51:13 -06:00
}