nixos-config/home/base/default.nix
2025-03-10 21:11:14 +04:00

39 lines
588 B
Nix

{
config,
pkgs,
lib,
...
}: {
imports = [
./zsh
];
# Base home configuration for all environments
home = {
username = "laurent";
homeDirectory = "/home/laurent";
stateVersion = "24.05";
};
programs.home-manager.enable = true;
# Common programs for all environments
programs.git = {
enable = true;
userName = "Laurent Le Houerou";
userEmail = "laurent@lehouerou.net";
};
# Common packages for all environments
home.packages = with pkgs; [
btop
neovim
lazygit
eza
fzf
ripgrep
zoxide
];
}