Split packages into multiple files for easier management.

This commit is contained in:
2025-12-09 12:52:01 +01:00
parent 54bd19fbc0
commit 4daef71117
8 changed files with 151 additions and 140 deletions

19
modules/packages/cli.nix Normal file
View File

@ -0,0 +1,19 @@
{config, pkgs, libs, inputs, ...}:
{
environment.systemPackages = with pkgs; [
#CLI tools
pdftk
yt-dlp
tailscale
speedtest-cli
#duplicati
#ollama
cloudflare-warp
ddrescue
texliveFull #LaTeX PDF maker
lazygit
gtypist
powertop
file
];
}