NixOS-Laptop/programs.nix
2026-05-08 20:56:35 +02:00

61 lines
858 B
Nix

{pkgs, ...}:
{
# Important packages for everything
environment.systemPackages = with pkgs; [
git
htop
tree
curl
wget
docker
ncdu
unzip
# General
rclone
nextcloud-client
spotify
gimp # Image editing
# School / University
miktex # Latex
tipp10 # 10 Finger tipping learn
libreoffice
# 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
# Proton/Wine for Gaming and running .exe
wineWowPackages.stable
winetricks
protonup-qt
lutris
vulkan-tools
bottles
bubblewrap
];
# Activating steam
programs.steam = {
enable = true;
gamescopeSession.enable = true;
};
}