dotfiles/common/users/homeModules/dev/default.nix

15 lines
210 B
Nix
Raw Normal View History

2025-01-31 16:41:00 -05:00
{ pkgs, ... }:
{
home = {
packages = with pkgs; [
gnumake
(binutils-unwrapped.override {
withAllTargets = true;
})
libtree
linuxHeaders
man-pages
];
};
2024-12-11 19:20:06 -05:00
}