refactor: move remaining config into home-utils.nix to finalise modularising home-manager configuration

This commit is contained in:
Mohammad Rafiq 2025-02-28 05:43:14 +08:00
parent 645837709a
commit 1f04150ff2
2 changed files with 29 additions and 19 deletions

21
modules/home-utils.nix Normal file
View file

@ -0,0 +1,21 @@
{ 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;
};
}