61 lines
703 B
Nix
61 lines
703 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
#Games
|
|
alacritty
|
|
ark
|
|
prismlauncher
|
|
zulu17
|
|
lutris
|
|
mangohud
|
|
#hackerman
|
|
fastfetch
|
|
freshfetch
|
|
cmatrix
|
|
cava
|
|
nitch
|
|
htop
|
|
gotop
|
|
#chromium
|
|
brave
|
|
freetube
|
|
webcord-vencord
|
|
#image/video/music/recording
|
|
imv
|
|
mpv
|
|
cmus
|
|
obs-studio
|
|
#gui stuff
|
|
ark
|
|
keepassxc
|
|
signal-desktop
|
|
transmission_3-gtk
|
|
upscayl
|
|
cinnamon.nemo
|
|
firefox
|
|
bottles
|
|
thunderbird
|
|
gnome.gnome-clocks
|
|
gnome-calculator
|
|
gnome-disk-utility
|
|
#random utils
|
|
tree
|
|
rofi-wayland
|
|
screen
|
|
git
|
|
zip
|
|
rar
|
|
unzip
|
|
unrar
|
|
scrcpy
|
|
appimage-run
|
|
yt-dlp
|
|
boxbuddy
|
|
distrobox
|
|
neovim
|
|
stdenv.mkDerivation
|
|
];
|
|
}
|