27 lines
371 B
Nix
27 lines
371 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.username = "ayman";
|
|
home.homeDirectory = "/home/ayman";
|
|
home.stateVersion = "24.11";
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
imports = [
|
|
./modules/theme.nix
|
|
./modules/zsh.nix
|
|
./modules/kitty.nix
|
|
./modules/starship.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
ripgrep
|
|
fd
|
|
bat
|
|
eza
|
|
fzf
|
|
jq
|
|
bottom
|
|
];
|
|
}
|