dots/nix/modules/shell.nix
Nico 67080cb94b nvim: swap mason with lazy-lsp for lsp installation
we don't need language-specific package managers in path now eg. cargo,
pip, npm, etc. this is done in a more "nix" way.
2025-05-03 16:31:41 +10:00

47 lines
662 B
Nix

{ config, lib, pkgs, ...}:
{
programs.zsh.enable = true;
environment.systemPackages = with pkgs; [
git
tmux
tlrc
file
stow
btop
jq
fzf
killall
ripgrep
wget
ffmpeg
imagemagick
];
programs.nh = {
enable = true;
flake = "/home/nico/dots/nix";
};
programs.direnv = {
enable = true;
silent = true;
loadInNixShell = true;
nix-direnv.enable = true;
direnvrcExtra = ''
export PROMPT="* $PROMPT"
'';
};
programs.neovim = {
enable = true;
vimAlias = true;
viAlias = true;
withRuby = true;
withPython3 = true;
withNodeJs = true;
};
}