Organized home packages; installed python3; updated 'update' aliases

This commit is contained in:
Random936 2024-06-05 13:12:38 -07:00
parent 755b933928
commit f96514ed92
2 changed files with 13 additions and 6 deletions

View File

@ -4,14 +4,20 @@
fonts.fontconfig.enable = true; fonts.fontconfig.enable = true;
home.packages = (with pkgs; [ home.packages = (with pkgs; [
btop # Utilities
tmux tmux
btop
manix manix
ripgrep
neofetch
# Dev tools
clang clang
cargo cargo
ripgrep python3
gnumake gnumake
neofetch
# Other
bitwarden-cli bitwarden-cli
]); ]);

View File

@ -14,9 +14,10 @@
shellAliases = { shellAliases = {
cd = "z"; cd = "z";
ls = "eza"; ls = "eza";
update-system = "sudo nixos-rebuild switch --flake ~/dotfiles"; update-darwin = "darwin-rebuild switch --flake ~/dotfiles";
update-user = "home-manager switch --flake ~/dotfiles"; update-conf = "sudo nixos-rebuild switch --flake ~/dotfiles";
update-all = "update-system && update-user"; update-home = "home-manager switch --flake ~/dotfiles";
update-all = "update-conf && update-home";
}; };
plugins = [ plugins = [