diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-07-26 11:01:53 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-07-26 11:01:53 -0700 |
| commit | 17e871833d66f7fc6a6fcab043e51b196f103855 (patch) | |
| tree | 1bcb86bbee7fade4015745536aa6ae33804a99fe /users/profiles/dev.nix | |
| parent | fix alacritty configuration (diff) | |
| download | infra-17e871833d66f7fc6a6fcab043e51b196f103855.tar.gz | |
moved every programs under users/programs
Configurations specific to work are managed in the work profile.
Diffstat (limited to '')
| -rw-r--r-- | users/profiles/dev.nix | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/users/profiles/dev.nix b/users/profiles/dev.nix deleted file mode 100644 index 0c9a07c..0000000 --- a/users/profiles/dev.nix +++ /dev/null @@ -1,52 +0,0 @@ -{ - config, - pkgs, - ... -}: -{ - home.packages = - with pkgs; - [ - docker - docker-credential-helpers - 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.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" - ]; -} |
