refactor: moved home config to more logical folder structure

This commit is contained in:
Mohammad Rafiq 2025-03-07 13:07:41 +08:00
parent f201190ef1
commit ecaa2c0dc4
29 changed files with 165 additions and 171 deletions

13
users/modules/utils.nix Normal file
View file

@ -0,0 +1,13 @@
{pkgs, ...}: {
home.packages = with pkgs; [
fastfetch # system info
wl-clipboard # provides cli copy and paste commands
aichat # duh
];
services = {
# clipboard history (depends on wl-clipboard)
cliphist.enable = true;
};
}