Move some tools to homemanager

This commit is contained in:
2024-02-27 10:15:40 +01:00
parent df883ff558
commit 555d4f3356
3 changed files with 26 additions and 18 deletions

25
home/packages/default.nix Normal file
View File

@@ -0,0 +1,25 @@
{ pkgs, ...}: {
home.packages = with pkgs; [
# Generic tools
btop
jq
ncdu
ripgrep
tokei
unzip
yt-dlp
# Editors
vscode
# Go stuff
go
delve
gopls
# Py stuff
python3
poetry
ruff
];
}