Add essential cli tools to home-manager
This commit is contained in:
parent
9719d3eefc
commit
e9faa6b70e
2 changed files with 25 additions and 0 deletions
|
|
@ -213,6 +213,7 @@
|
|||
modules/nix.nix
|
||||
home/neovim/default.nix
|
||||
home/zsh/default.nix
|
||||
home/cli.nix
|
||||
];
|
||||
|
||||
};
|
||||
|
|
|
|||
24
home/cli.nix
Normal file
24
home/cli.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
wget
|
||||
curl
|
||||
git
|
||||
neofetch
|
||||
tealdeer
|
||||
|
||||
pdfgrep
|
||||
pdftk
|
||||
p7zip
|
||||
];
|
||||
|
||||
programs = {
|
||||
htop.enable = true;
|
||||
git.enable = true;
|
||||
bat.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue