Skip to content

Commit

Permalink
Added docker and mysql-workbench packages
Browse files Browse the repository at this point in the history
Added direnv to home manager config as well as a hook for zsh (for
seamless dev environments w/ devShells)

Added a typescript plugin for neovim
  • Loading branch information
jwyuen committed Aug 27, 2024
1 parent 9ee8c9a commit 45d3040
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions nix-config/home/neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ in {
enable_autocmd = false;
};
};
typescript-tools.enable = true;
which-key.enable = true;
};

Expand Down
10 changes: 8 additions & 2 deletions nix-config/home/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ in {
libmpdclient playerctl mpd ncmpcpp mpc-cli pamixer
# dev related
alacritty wezterm geany rustup libvirt maim papirus-icon-theme joypixels zig gcc
lazygit xclip zoxide fzf fd zellij sesh
lazygit xclip zoxide fzf fd zellij sesh docker mysql-workbench
# zsh related
zsh zsh-autosuggestions zsh-history-substring-search zsh-syntax-highlighting
zsh-autocomplete
Expand Down Expand Up @@ -45,5 +45,11 @@ in {
# (import ./../scripts/list-hypr-bindings.nix { inherit pkgs; })
];

programs.gh.enable = true;
programs = {
direnv = {
enable = true;
nix-direnv.enable = true;
};
gh.enable = true;
};
}
1 change: 1 addition & 0 deletions nix-config/home/zsh.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ lib.mkIf (theShell == "zsh") {
fi
eval "$(starship init zsh)"
eval "$(zoxide init zsh)"
eval "$(direnv hook zsh)"
'';
initExtraFirst = ''
HISTFILE=~/.histfile
Expand Down

0 comments on commit 45d3040

Please sign in to comment.