All checks were successful
Nix Format Check / check-format (push) Successful in 37s
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{ pkgs-unstable, pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# GUI Application
|
|
## Utilities
|
|
mission-center # Task Manager like Windows 11
|
|
gnome-tweaks
|
|
pinta # Paint.NET alternative
|
|
bottles # Wine manager
|
|
trayscale # Tray icon for Tailscale
|
|
spacedrive # Virtual filesystem manager
|
|
smile # Emoji picker
|
|
gnome-frog # OCR tool
|
|
gnome-boxes # Virtual machine manager
|
|
deja-dup # Backup tool
|
|
sqlitebrowser # SQLite database manager
|
|
wmctrl # Window manager control (Used in ulauncher)
|
|
gparted # Used to nuke Windows off of my system
|
|
rpi-imager # Raspberry Pi OS image writer
|
|
pavucontrol # PulseAudio volume control
|
|
qrencode # qr code generator
|
|
grimblast # Screenshot tool
|
|
ptyxis # Terminal emulator
|
|
|
|
## 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
|
|
dosbox
|
|
|
|
### Game utilities
|
|
protonup-qt
|
|
protontricks
|
|
|
|
### Virtualization
|
|
virt-manager
|
|
virt-viewer
|
|
];
|
|
}
|