diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-07-21 07:40:58 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-07-21 08:13:13 -0700 |
| commit | 0afe82a4086efa5cca9ea7c991dd48701db87eab (patch) | |
| tree | 09cd61e6979229b2701efdeb7476f76f74e2108a /nix/users | |
| parent | easier to read import paths (diff) | |
| download | infra-0afe82a4086efa5cca9ea7c991dd48701db87eab.tar.gz | |
organize installed packages by languages
Diffstat (limited to 'nix/users')
| -rw-r--r-- | nix/users/profiles/dev.nix | 49 |
1 files changed, 29 insertions, 20 deletions
diff --git a/nix/users/profiles/dev.nix b/nix/users/profiles/dev.nix index c996aeb..d4a70ce 100644 --- a/nix/users/profiles/dev.nix +++ b/nix/users/profiles/dev.nix @@ -4,26 +4,35 @@ ... }: { - home.packages = with pkgs; [ - aider-chat - basedpyright - llmPython.llm # llm and claude support - delve - dive # explore layers in docker images - docker - go-tools # collection of tools, https://github.com/dominikh/go-tools - golangci-lint - gopls - nil # nix lsp - nix-direnv # integration with direnv - nixfmt-rfc-style # new formatter - python3 - ruff - # ruff-lsp - rustup - uv - wireshark - ]; + home.packages = + with pkgs; + [ + docker + dive # explore layers in docker images + wireshark + ] + ++ [ + llmPython.llm # llm and claude support + aider-chat + ] + ++ [ + delve + go-tools # collection of tools, https://github.com/dominikh/go-tools + golangci-lint + gopls + ] + ++ [ + nil # nix lsp + nix-direnv # integration with direnv + nixfmt-rfc-style # new formatter + ] + ++ [ + python3 + basedpyright + ruff + # ruff-lsp + uv + ]; programs.direnv = { enable = true; |
