From 0afe82a4086efa5cca9ea7c991dd48701db87eab Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 21 Jul 2025 07:40:58 -0700 Subject: organize installed packages by languages --- nix/users/profiles/dev.nix | 49 +++++++++++++++++++++++++++------------------- 1 file 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; -- cgit v1.2.3