nix-config/hosts/apps.nix

14 lines
199 B
Nix

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