NixOS-Laptop/programs.nix
2026-05-07 08:25:07 +02:00

30 lines
362 B
Nix

{pkgs, ...}:
{
# Important packages for everything
environment.systemPackages = with pkgs; [
git
htop
tree
curl
wget
docker
# Coding
vscode
# Local AI
ollama-rocm # ROCM for AMD GPU acceleration
lmstudio
# Proton
proton-pass
protonvpn-gui
proton-authenticator
protonmail-desktop
];
}