dotfiles/modules/cli.nix
2026-05-26 11:14:56 -04:00

18 lines
No EOL
228 B
Nix

{ pkgs, ...}: {
imports = [
./editors
];
home-manager.users.may.home.packages = with pkgs; [
neofetch
wget
tmux
file
btop
screen
ranger # file manager
ripgrep
cloc
gdu
];
}