nixfiles/home/cli.nix
Katherina Walshe-Grey 2bcb07ee60 Revert "Install please"
Not the package I thought it was.

This reverts commit 7899127c05.
2024-06-19 19:36:37 +01:00

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;
}