pantheon/users/modules/utils.nix
2025-03-15 23:19:27 +08:00

14 lines
276 B
Nix

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