aboutsummaryrefslogblamecommitdiff
path: root/nix/users/fcuny/dev.nix
blob: f95c04dc9307444b1ae547fa02079f89287c2920 (plain) (tree)
1
2
3
4
5
6
7
8
9




         

                              
                  
              
             
 
        



                 
 


            
                                
 






                                        
    




                                   


                          
      

    



                                             
 
{
  config,
  pkgs,
  ...
}:
{
  home.packages = with pkgs; [
    _1password-cli
    aider-chat
    wireshark

    # go
    go-tools
    golangci-lint
    gopls
    delve

    # python
    uv
    python3
    customPackages.llmPython.llm

    # nix
    nil # nix lsp
    nix-direnv # integration with direnv
    nixfmt-rfc-style # new formatter

    # rust
    rustup
  ];

  programs.go = {
    enable = true;
    goPath = ".local/share/pkg.go";
    goBin = ".local/bin.go";
    goPrivate = [
      "github.rbx.com/*"
      "github.com/fcuny/*"
    ];
  };

  home.sessionPath = [
    config.home.sessionVariables.GOBIN
    "${config.home.homeDirectory}/.local/bin"
  ];
}