15 lines
196 B
Nix
15 lines
196 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
tree # like `ls -R` but nicer
|
|
|
|
# Extremely important
|
|
fortune
|
|
cowsay
|
|
lolcat
|
|
];
|
|
|
|
programs.btop.enable = true;
|
|
}
|