dotfiles/common/users/homeModules/dev/default.nix
2025-01-31 16:41:00 -05:00

14 lines
210 B
Nix

{ pkgs, ... }:
{
home = {
packages = with pkgs; [
gnumake
(binutils-unwrapped.override {
withAllTargets = true;
})
libtree
linuxHeaders
man-pages
];
};
}