summaryrefslogtreecommitdiff
path: root/modules/dev.nix
blob: a74aa84b8d62dbd83a590e9614a75c4c522d7049 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ config, pkgs, ... }:

let
  user = config.userdata.user;
in
{
  users.users.${user}.packages = with pkgs; [
    gcc
    git
    lua

    man-pages
    man-pages-posix

    ccls
    lua-language-server
    nil
    nodePackages.bash-language-server
    nodePackages.pyright
    shellcheck
  ];

  documentation.dev.enable = true;
}