From 2c27aefeafade559bc7b3e6d025a03575d4a00f6 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sat, 25 Dec 2021 01:27:06 -0500 Subject: [PATCH] programming/nim: add nim profile --- flake.nix | 1 + profiles/develop/programming/nim.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 profiles/develop/programming/nim.nix diff --git a/flake.nix b/flake.nix index 8060284..e82c9ed 100644 --- a/flake.nix +++ b/flake.nix @@ -231,6 +231,7 @@ python racket haskell + nim ]) ]; }; diff --git a/profiles/develop/programming/nim.nix b/profiles/develop/programming/nim.nix new file mode 100644 index 0000000..6579ab2 --- /dev/null +++ b/profiles/develop/programming/nim.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: { + environment.systemPackages = with pkgs; [ + nim + nimlsp + ]; +}