pantheon/users/rafiq/default.nix
2025-02-28 05:33:09 +08:00

37 lines
735 B
Nix

{ self, pkgs, ... }:
{
imports = [
../../modules/home-git.nix # git specific configs
../../modules/home-tmux.nix # tmux specific configs (might move this)
../../modules/home-sh.nix # bash and other shell specific configs
../../modules/home-wm.nix # window manager configs
../../modules/home-editor.nix # editor specific configs
];
home = {
username = "rafiq";
homeDirectory = "/home/rafiq";
packages = [
pkgs.kitty
pkgs.fastfetch
pkgs.wl-clipboard
];
};
programs = {
tealdeer = {
enable = true;
enableAutoUpdates = true;
};
home-manager.enable = true;
};
services = {
cliphist.enable = true;
};
home.stateVersion = "25.05";
}