refactor: moved user-specific nix modules into the users/modules directory

This commit is contained in:
Mohammad Rafiq 2025-03-01 06:01:40 +08:00
parent 169a8785ee
commit abfacba0aa
8 changed files with 11 additions and 9 deletions

View file

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