summaryrefslogblamecommitdiff
path: root/modules/dev.nix
blob: 7223d08e2a6ee669066e52d148c13fbe10e928db (plain) (tree)
1
2
3
4
5
6
7
8
9
                      
 


                              
 
                                             
       
       
       




                                       
 

                   






                                     
    
 

                                  
{ config, pkgs, ... }:

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

    (python3.withPackages (p: with p; [
      pip
      build
    ]))

    man-pages
    man-pages-posix

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

  documentation.dev.enable = true;
}