mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-24 00:58:55 -05:00
14 lines
210 B
Nix
14 lines
210 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs; [
|
|
gnumake
|
|
(binutils-unwrapped.override {
|
|
withAllTargets = true;
|
|
})
|
|
libtree
|
|
linuxHeaders
|
|
man-pages
|
|
];
|
|
};
|
|
}
|