about summary refs log tree commit diff
path: root/home/profiles/dev.nix
blob: 3dc52710f6bd5bf5e74521f6d53de60b97342ab7 (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
{ pkgs, config, ... }:
let
  ruststable = (pkgs.rust-bin.stable.latest.default.override {
    extensions = [
      "rust-src"
      "rust-analyzer-preview"
      "rust-analysis"
      "rustfmt-preview"
    ];
  });
  pythonEnv = pkgs.python3.withPackages (p: with p; [
    black
    click
    isort
    pylsp-mypy
    requests
    types-requests
    pip
    ipython
  ]);
in
{
  programs.go = {
    enable = true;
    goPath = ".local/share/pkg.go";
    goBin = ".local/bin.go";
    goPrivate = [ "git.fcuny.net" "golang.fcuny.net" ];
    package = pkgs.go_1_18;
  };

  home.packages = with pkgs; [
    go-tools
    pythonEnv
    google-cloud-sdk
    ruststable
  ];

  home.sessionPath = [
    config.home.sessionVariables.GOBIN
    "$CARGO_HOME/bin"
  ];

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