Files
dotfiles/home/base.nix
T

26 lines
344 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
];
home.packages = with pkgs; [
ripgrep
fd
bat
eza
fzf
jq
bottom
];
}