about summary refs log tree commit diff
path: root/nix/profiles/home-manager/dev.nix
blob: a7b1df79645da1461ea4808f0a738423e3f632f0 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{ pkgs
, config
, ...
}:
let
  pythonEnv = pkgs.python3.withPackages (p:
    with p; [
      black
      click
      isort
      python-lsp-server
      pylsp-mypy
      python-lsp-ruff
      ruff-lsp
      requests
      types-requests
      pip
      ipython
      virtualenv
    ]);
in
{
  programs.go = {
    enable = true;
    goPath = ".local/share/pkg.go";
    goBin = ".local/bin.go";
    package = pkgs.go_1_21;
    goPrivate = [ "github.rbx.com/roblox/*" "github.com/fcuny/world/*" ];
  };

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

    # rust
    rustup

    # docker
    dive # explore layers in docker images

    # shell
    shellcheck

    # ops
    google-cloud-sdk
    kubectl
    tfswitch

    # python
    pythonEnv
    ruff
  ];

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

  programs.zsh.shellAliases = {
    kc = "kubectl";
  };

  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";
  };
}