adds unstable nixpkgs for vscode, docker, go and ollama updates tilingshell layouts
49 lines
703 B
Nix
49 lines
703 B
Nix
{ pkgs-unstable, pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# GUI Applications
|
|
## Utilities
|
|
pkgs-unstable.mission-center
|
|
gnome.gnome-tweaks
|
|
pinta
|
|
bottles
|
|
trayscale
|
|
spacedrive
|
|
|
|
## Chat Apps
|
|
telegram-desktop
|
|
betterdiscordctl
|
|
vesktop
|
|
whatsapp-for-linux
|
|
signal-desktop
|
|
|
|
## Multimedia
|
|
spotify
|
|
plex-media-player
|
|
vlc
|
|
|
|
## Astronomy
|
|
stellarium
|
|
|
|
## Games
|
|
### Open-source games
|
|
openra
|
|
xonotic
|
|
mindustry
|
|
wesnoth
|
|
shattered-pixel-dungeon
|
|
|
|
### Games launchers
|
|
lutris
|
|
heroic
|
|
|
|
### Game utilities
|
|
protonup-qt
|
|
protontricks
|
|
|
|
### Virtualization
|
|
virt-manager
|
|
virt-viewer
|
|
];
|
|
}
|