Skip to content

Commit

Permalink
chore: update home-manager packages and environment variables
Browse files Browse the repository at this point in the history
- Removed `cachix`, `charm-freeze`, `lazydocker`, and `slides` from home.packages
- Added `devcontainer` to home.packages
- Updated `PATH` environment variable to include `$GOPATH/bin` and `$HOME/.docker/bin` before the existing `$PATH`
  • Loading branch information
erikreinert committed Aug 31, 2024
1 parent 9af81e7 commit f3c6858
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions lib/shared/home-manager.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,16 @@ in {

home.packages = with pkgs; [
awscli2
cachix
charm-freeze
devcontainer
doppler
fd
gh
httpie
jq
k9s
kubectl
lazydocker
ripgrep
shell-gpt
slides
z-lua
];

Expand All @@ -47,7 +44,7 @@ in {
LANG = "en_US.UTF-8";
LC_ALL = "en_US.UTF-8";
LC_CTYPE = "en_US.UTF-8";
PATH = "$PATH:$GOPATH/bin";
PATH = "$GOPATH/bin:$HOME/.docker/bin:$PATH";
PULUMI_K8S_SUPPRESS_HELM_HOOK_WARNINGS = "true";
PULUMI_SKIP_UPDATE_CHECK = "true";
};
Expand Down

0 comments on commit f3c6858

Please sign in to comment.