Files
config/modules/profiles/devtools/default.nix
2026-04-08 00:35:36 +03:00

44 lines
711 B
Nix

{ config, pkgs, ... }:
{
home-manager.users.${config.mj.username} = {
imports = [ ../../../shared/home/dev.nix ];
};
environment.systemPackages = with pkgs; [
universal-ctags
pkgs-unstable.go
pkgs-unstable.delve
pkgs-unstable.go-tools
pkgs.zigpkgs."0.15.1"
uv
cloc
josm
zbar
ninja
shfmt
tokei
bloaty
skopeo
inferno
undocker
graphviz
loccount
hyperfine
tesseract
oath-toolkit
nixpkgs-review
git-filter-repo
pkgs.pkgs-unstable.claude-code
(python3.withPackages (
ps: with ps; [
numpy
pyyaml
plotly
ipython
pymodbus
matplotlib
]
))
];
}