pantheon/modules/home-utils.nix
2025-02-28 07:33:55 +08:00

23 lines
452 B
Nix

{ pkgs, ... }:
{
# TODO: Move wayland-specific stuff to a wayland config
home.packages = with pkgs; [
fastfetch # system info
wl-clipboard # provides cli copy and paste commands
];
programs = {
# man page summaries (activate with tldr <command>)
tealdeer = {
enable = true;
enableAutoUpdates = true;
};
};
services = {
# clipboard history (depends on wl-clipboard)
cliphist.enable = true;
};
}