aboutsummaryrefslogblamecommitdiff
path: root/home/dev.nix
blob: a860027574efab7e3d2b1093b04b1f16af266d89 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                      

                                                     
         





                  
              






                                   
                           



                              

                 






                                          



                                      






                                                  
                                         

    
{ pkgs, config, ... }:
let
  pythonEnv = pkgs.python3.withPackages (p: with p; [
    black
    click
    isort
    pylsp-mypy
    requests
    types-requests
    pip
    ipython
    virtualenv
  ]);
in
{
  programs.go = {
    enable = true;
    goPath = ".local/share/pkg.go";
    goBin = ".local/bin.go";
    package = pkgs.go_1_20;
  };

  home.packages = with pkgs; [
    go-tools
    golangci-lint
    gopls

    dive # explore layers in docker images

    pythonEnv

    google-cloud-sdk

  ];

  home.sessionPath = [
    config.home.sessionVariables.GOBIN
  ];

  home.sessionVariables = with config.xdg; {
    IPYTHONDIR = "${cacheHome}/ipython";
    PIP_LOG = "${cacheHome}/pip/pip.log";
    PYLINTHOME = "${cacheHome}/pylint";
    PYTHON_EGG_CACHE = "${cacheHome}/python-eggs";
    MYPY_CACHE_DIR = "${cacheHome}/mypy";
  };
}