diff --git a/home-manager/common.nix b/home-manager/common.nix index 23e3c07..b945d5f 100644 --- a/home-manager/common.nix +++ b/home-manager/common.nix @@ -4,14 +4,20 @@ fonts.fontconfig.enable = true; home.packages = (with pkgs; [ - btop + # Utilities tmux + btop manix + ripgrep + neofetch + + # Dev tools clang cargo - ripgrep + python3 gnumake - neofetch + + # Other bitwarden-cli ]); diff --git a/home-manager/zsh.nix b/home-manager/zsh.nix index 50ab14e..f2ad2e7 100644 --- a/home-manager/zsh.nix +++ b/home-manager/zsh.nix @@ -14,9 +14,10 @@ shellAliases = { cd = "z"; ls = "eza"; - update-system = "sudo nixos-rebuild switch --flake ~/dotfiles"; - update-user = "home-manager switch --flake ~/dotfiles"; - update-all = "update-system && update-user"; + update-darwin = "darwin-rebuild switch --flake ~/dotfiles"; + update-conf = "sudo nixos-rebuild switch --flake ~/dotfiles"; + update-home = "home-manager switch --flake ~/dotfiles"; + update-all = "update-conf && update-home"; }; plugins = [