mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
Edit ubuntu-home.nix
This commit is contained in:
parent
d2152c6978
commit
cc5f8deb49
1 changed files with 0 additions and 0 deletions
100
standalone-home.nix
Normal file
100
standalone-home.nix
Normal file
|
@ -0,0 +1,100 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
home.username = "aaronh";
|
||||
home.homeDirectory = "/home/aaronh";
|
||||
home.stateVersion = "24.05";
|
||||
|
||||
home.packages = with pkgs; [
|
||||
bat
|
||||
bottom
|
||||
cargo
|
||||
cyme
|
||||
dua
|
||||
eza
|
||||
fastfetch
|
||||
fd
|
||||
freshfetch
|
||||
gcc
|
||||
gnumake
|
||||
pkg-config
|
||||
rustc
|
||||
];
|
||||
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.nushell = {
|
||||
enable = true;
|
||||
shellAliases = {
|
||||
cat = "bat";
|
||||
ls = "eza";
|
||||
lsusb = "cyme";
|
||||
};
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
userName = "Aaron Honeycutt";
|
||||
userEmail = "aaronhoneycutt@protonmail.com";
|
||||
aliases = {
|
||||
undo = "reset HEAD~1 --mixed";
|
||||
amend = "commit -a --amend";
|
||||
feature = "commit -m feat: -m new-feature";
|
||||
fix = "commit -m fix: -m issue#";
|
||||
};
|
||||
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.gh.enable = true;
|
||||
|
||||
programs.gh-dash = {
|
||||
enable = true;
|
||||
settings = {
|
||||
prSections = [
|
||||
{
|
||||
title = "My Pull Requests";
|
||||
filters = "is:open author:@me";
|
||||
}
|
||||
{
|
||||
title = "My Review Requests";
|
||||
filters = "is:open review-requested:@me";
|
||||
}
|
||||
{
|
||||
title = "Assigned PRs";
|
||||
filters = "is:open assignee:@me";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
settings = {
|
||||
theme = "onedark";
|
||||
};
|
||||
};
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue