pantheon/users/modules/utils.nix
2025-03-17 18:32:59 +08:00

16 lines
296 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
fastfetch # system info
wl-clipboard # provides cli copy and paste commands
aichat # duh
ripgrep
devenv
thefuck
bat
];
services = {
# clipboard history (depends on wl-clipboard)
cliphist.enable = true;
};
}