From 8b57a7580a1e09583f8b72321efb6e18e73c1f6a Mon Sep 17 00:00:00 2001 From: James Walker Date: Sun, 15 Sep 2024 13:06:52 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20chezmoi=20deploy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nix/users/walkah/home.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nix/users/walkah/home.nix b/nix/users/walkah/home.nix index 38f407c..c1689c2 100644 --- a/nix/users/walkah/home.nix +++ b/nix/users/walkah/home.nix @@ -1,19 +1,18 @@ { lib, pkgs, ... }: { home = { - username = "walkah"; - # homeDirectory = if pkgs.stdenv.isDarwin then "/Users/walkah" else "/home/walkah"; - packages = with pkgs; [ chezmoi direnv eza fzf git + htop starship tmux ]; activation.chezmoi = lib.hm.dag.entryAfter [ "installPackages" ] '' + export PATH="${pkgs.git}/bin:$PATH" $DRY_RUN_CMD ${pkgs.chezmoi}/bin/chezmoi init --apply walkah/dotfiles '';