nix-config/hosts/apps.nix
2025-03-26 16:57:43 -07:00

15 lines
213 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
# Essential command line utilities
wget
neofetch
killall
htop
trash-cli # aliased to rm in .bashrc
unzip
pipes
git-crypt
];
}