21 lines
393 B
Nix
21 lines
393 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
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;
|
|
};
|
|
}
|