nix-configs/home.nix
2025-12-19 12:47:57 -07:00

86 lines
1.4 KiB
Nix

{
config,
pkgs,
...
}: {
home = {
username = "aaronh";
homeDirectory = "/home/aaronh";
stateVersion = "25.05";
};
home.packages = with pkgs; [
# GUI
deja-dup
discord
libreoffice-fresh
signal-desktop
# CLI
];
home.sessionVariables = {
EDITOR = "hx";
VISUAL = "hx";
};
programs.bash = {
enable = true;
#shellAliases = {
#};
#bashrcExtra = "";
};
programs.starship = {
enable = true;
};
programs.git = {
enable = true;
lfs.enable = true;
settings = {
user.name = "Aaron Honeycutt";
user.email = "aaronhoneycutt@protonmail.com";
aliases = {
undo = "rebase -i HEAD~2";
amend = "commit -a --amend";
force = "push -f";
};
color = {
ui = "auto";
};
color.status = {
added = "green bold";
changed = "yellow bold";
untracked = "red bold";
};
push = {
autoSetupRemote = "true";
};
init = {
defaultBranch = "main";
};
core.editor = "hx";
};
};
programs.keychain = {
enable = true;
keys = [
"protonmail"
];
};
programs.helix = {
enable = true;
settings = {
theme = "ferra";
};
};
programs.zellij = {
enable = true;
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}