20 lines
296 B
Nix
20 lines
296 B
Nix
{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
|
|
];
|
|
}
|