nixfiles/home/qenya/cli.nix

16 lines
206 B
Nix

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