79 lines
1.3 KiB
Nix
79 lines
1.3 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.username = "aaron";
|
|
home.homeDirectory = "/home/aaron";
|
|
home.stateVersion = "25.05";
|
|
|
|
home.packages = with pkgs; [
|
|
bat
|
|
bottom
|
|
cyme
|
|
dua
|
|
eza
|
|
fd
|
|
];
|
|
|
|
programs.bash = {
|
|
enable = true;
|
|
};
|
|
|
|
programs.nushell = {
|
|
enable = true;
|
|
shellAliases = {
|
|
cat = "bat";
|
|
ls = "eza";
|
|
lsusb = "cyme";
|
|
};
|
|
};
|
|
|
|
programs.starship = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
};
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
lfs.enable = true;
|
|
userName = "Aaron Honeycutt";
|
|
userEmail = "aaronhoneycutt@protonmail.com";
|
|
aliases = {
|
|
undo = "rebase -i HEAD~2";
|
|
amend = "commit -a --amend";
|
|
};
|
|
extraConfig = {
|
|
core.editor = "hx";
|
|
color = {
|
|
ui = "auto";
|
|
};
|
|
color.status = {
|
|
added = "green bold";
|
|
changed = "yellow bold";
|
|
untracked = "red bold";
|
|
};
|
|
push = {
|
|
autoSetupRemote = "true";
|
|
};
|
|
init = {
|
|
defaultBranch = "main";
|
|
};
|
|
};
|
|
};
|
|
|
|
programs.helix = {
|
|
enable = true;
|
|
settings = {
|
|
theme = "ferra";
|
|
};
|
|
};
|
|
|
|
programs.zellij = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
};
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = false;
|
|
}
|