36 lines
489 B
Nix
36 lines
489 B
Nix
{pkgs, ...}:
|
|
|
|
{
|
|
# Important packages for everything
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
htop
|
|
tree
|
|
curl
|
|
wget
|
|
docker
|
|
|
|
|
|
# General
|
|
nextcloud-client
|
|
onedrive
|
|
rclone # Unter anderem für ProtonDrive
|
|
|
|
|
|
# Coding
|
|
vscode
|
|
mission-center # Task manager
|
|
|
|
|
|
# Local AI
|
|
ollama-rocm # ROCM for AMD GPU acceleration
|
|
lmstudio
|
|
|
|
|
|
# Proton
|
|
proton-pass
|
|
protonvpn-gui
|
|
proton-authenticator
|
|
protonmail-desktop
|
|
];
|
|
}
|