14 lines
199 B
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
|
|
];
|
|
}
|