aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix')
-rw-r--r--nix/users/profiles/dev.nix49
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;