From f96514ed924bfdbf3ff2d510ecbb590c7ef810f8 Mon Sep 17 00:00:00 2001 From: Random936 Date: Wed, 5 Jun 2024 13:12:38 -0700 Subject: [PATCH] Organized home packages; installed python3; updated 'update' aliases --- home-manager/common.nix | 12 +++++++++--- home-manager/zsh.nix | 7 ++++--- 2 files changed, 13 insertions(+), 6 deletions(-) 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 = [