You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
673 B
46 lines
673 B
2 years ago
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
# Command line utilities
|
||
|
wget
|
||
|
neofetch
|
||
|
pfetch
|
||
|
fortune
|
||
|
killall
|
||
|
trash-cli # aliased to rm in .bashrc
|
||
|
unzip
|
||
|
pipes
|
||
|
wine
|
||
|
pandoc
|
||
|
texlive.combined.scheme-full
|
||
|
|
||
|
# Programming languages
|
||
|
jdk
|
||
|
|
||
|
# Tray applications
|
||
|
networkmanagerapplet # nm-applet
|
||
|
nextcloud-client
|
||
|
|
||
|
# System GUI applications
|
||
|
gnome.nautilus
|
||
|
gnome.file-roller
|
||
|
gnome.gnome-calculator
|
||
|
gnome.gnome-disk-utility
|
||
|
|
||
|
# Applications
|
||
|
discord
|
||
|
gimp
|
||
|
krita
|
||
|
inkscape
|
||
|
obs-studio
|
||
|
qbittorrent
|
||
|
pureref
|
||
|
libreoffice
|
||
|
gnome.ghex
|
||
|
|
||
|
# Games
|
||
|
prismlauncher
|
||
|
];
|
||
|
}
|