ref(home-manager): is a flake now

This commit is contained in:
Léana 江 2023-12-30 12:06:41 +01:00 committed by Léana 江
parent 978968fbc7
commit d38927c9ef
6 changed files with 222 additions and 112 deletions

View file

@ -0,0 +1,58 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
# Editors and utils
tmux
neovim
vim
hyperfine
watchexec
tea
tokei
# Generic LSPs
vscode-langservers-extracted # HTML/CSS/JSON/ESLint
nodePackages.bash-language-server # Bash
marksman # Markdown
nodePackages.pyright # Python
taplo # TOML
texlab # LaTeX
typescript # TypeScript
nodePackages.vim-language-server # Vim Script
typst-lsp # Typst
lua-language-server # Lua
# git
git
git-lfs
bat
delta
gnupg
nil
alejandra
nixfmt
(python39.withPackages (ps:
with ps; [
beautifulsoup4
requests
python-lsp-server
rope
pyflakes
mccabe
pycodestyle
pydocstyle
autopep8
]))
jdk17
rustup
nodejs_20
];
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
}