aboutsummaryrefslogtreecommitdiff
path: root/nix/devshell.nix
blob: 8486168fa45a873c4acf26c745a4d21e7a95998b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ flaky-utils, pkgs }:

flaky-utils.lib.mkDevShell {
  inherit pkgs;

  tools = with pkgs; [
    nim
    nrpl
    nim-atlas
    nimble
    nimlangserver
    nim_lk
  ];

  prePrompt = ''
    echo "<C-d> to exit this development shell."
  '';

  shell = null;
}