nixos-cesium/config/home.nix
2026-02-06 22:32:49 +01:00

42 lines
534 B
Nix

# In deiner home.nix
{ config, pkgs, ... }:
{
home.stateVersion = "25.11";
home.packages = with pkgs; [
# Desktop-Anwendungen
thunderbird
vlc
gimp
filezilla
solaar
libreoffice-fresh
hunspell
hunspellDicts.de_DE
darktable
# Browser
google-chrome
# Kommunikation
signal-desktop
# Remote Desktop
rustdesk-flutter
# Gaming
lutris
steam
# Entwicklung
jetbrains-toolbox
jetbrains.phpstorm
mkcert
gitflow
# Tools
stow
];
}