63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{config, pkgs, libs, inputs, ...}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
#Programming
|
|
#jetbrains.pycharm-community #The PyCharm IDE to edit Python code
|
|
#jetbrains.idea-community #The IntelliJ IDE to edit Java code
|
|
#jetbrains.clion #The CLion IDE to edit and compile c/c++ code
|
|
jetbrains-toolbox
|
|
#racket #The racket Programming language, with DrRacket IDE, for University (*Not* because it's my favourite)
|
|
rustup #Rust Programming Toolchain
|
|
#go #Go Programming Language
|
|
gcc
|
|
pkg-config
|
|
vscode #Editor for all kinds of programms
|
|
nodejs_22
|
|
|
|
#Hochschule
|
|
postgresql
|
|
dbeaver-bin
|
|
sqlite
|
|
|
|
#Desktop Applications
|
|
drawio
|
|
#jetbrains.datagrip
|
|
ryubing
|
|
vlc
|
|
#steam
|
|
#heroic
|
|
lutris
|
|
#putty Need to find alternative as it sucks on linux
|
|
mission-center
|
|
trayscale
|
|
spotify
|
|
rpi-imager
|
|
kdePackages.yakuake
|
|
atlauncher
|
|
#discord
|
|
vesktop
|
|
wineWowPackages.stagingFull
|
|
winetricks
|
|
wasistlos #Whatsapp
|
|
#obs-studio
|
|
#i2p
|
|
gparted #Disk partition Manager
|
|
#rustdesk
|
|
realvnc-vnc-viewer
|
|
eddie #AirVPN desktop client
|
|
chromium #For Youtube app to work
|
|
kdePackages.bluez-qt
|
|
moonlight-qt
|
|
kitty
|
|
wmctrl #To Force windows into fullscreen
|
|
kdePackages.dolphin
|
|
persepolis #Download Manager
|
|
libreoffice-still
|
|
kdePackages.kservice
|
|
qbittorrent
|
|
waydroid #Android
|
|
grim
|
|
];
|
|
}
|