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