42 lines
534 B
Nix
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
|
|
];
|
|
}
|