pantheon/users/modules/utils.nix
2025-03-25 01:17:00 +08:00

18 lines
312 B
Nix

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