127 lines
1.7 KiB
Nix
127 lines
1.7 KiB
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home = {
|
||
|
packages = with pkgs; [
|
||
|
# Office
|
||
|
aerc
|
||
|
libreoffice-fresh
|
||
|
obsidian
|
||
|
thunderbird
|
||
|
pandoc
|
||
|
texlive.combined.scheme-full
|
||
|
|
||
|
# Programming
|
||
|
bacon
|
||
|
colordiff
|
||
|
podman-compose
|
||
|
docker-compose
|
||
|
sublime-merge
|
||
|
tig
|
||
|
vscode-fhs
|
||
|
|
||
|
cargo
|
||
|
cargo-outdated
|
||
|
clang
|
||
|
poetry
|
||
|
rust-analyzer
|
||
|
rustc
|
||
|
rustfmt
|
||
|
|
||
|
# Graphics
|
||
|
gimp
|
||
|
graphicsmagick
|
||
|
inkscape
|
||
|
imv
|
||
|
|
||
|
# Internet
|
||
|
discord
|
||
|
element-desktop
|
||
|
gnome.epiphany
|
||
|
httpie
|
||
|
wget
|
||
|
remmina
|
||
|
x2goclient
|
||
|
transmission-gtk
|
||
|
|
||
|
# Sound & Video
|
||
|
cantata
|
||
|
easyeffects
|
||
|
pavucontrol
|
||
|
spotify
|
||
|
ncmpcpp
|
||
|
mpdevil
|
||
|
squeezelite
|
||
|
mediainfo
|
||
|
mpc-cli
|
||
|
|
||
|
# Gaming
|
||
|
chiaki
|
||
|
#prismlauncher
|
||
|
heroic
|
||
|
#factorio
|
||
|
|
||
|
# System Tools
|
||
|
dig
|
||
|
borgbackup
|
||
|
dconf
|
||
|
dmenu
|
||
|
rofi-wayland
|
||
|
grim
|
||
|
light
|
||
|
screen
|
||
|
slurp
|
||
|
smartmontools
|
||
|
swaylock
|
||
|
sysstat
|
||
|
usbutils
|
||
|
virt-manager
|
||
|
wl-clipboard
|
||
|
yubikey-manager
|
||
|
watchexec
|
||
|
wine
|
||
|
xdg-utils
|
||
|
xfce.thunar
|
||
|
gnome.nautilus
|
||
|
nnn
|
||
|
|
||
|
niv
|
||
|
home-manager
|
||
|
nix-index
|
||
|
|
||
|
gnome.evince
|
||
|
gnome.gnome-characters
|
||
|
gnome.gnome-keyring
|
||
|
gnome.gnome-system-monitor
|
||
|
gnome.gnome-tweaks
|
||
|
pika-backup
|
||
|
|
||
|
dua
|
||
|
fd
|
||
|
file
|
||
|
killall
|
||
|
lsof
|
||
|
ncdu
|
||
|
silver-searcher
|
||
|
tree
|
||
|
|
||
|
htop
|
||
|
iotop
|
||
|
powertop
|
||
|
s-tui
|
||
|
|
||
|
libarchive
|
||
|
p7zip
|
||
|
unrar
|
||
|
unzip
|
||
|
zip
|
||
|
|
||
|
# Misc
|
||
|
php
|
||
|
python311
|
||
|
python311Packages.i3ipc
|
||
|
kicad-small
|
||
|
];
|
||
|
};
|
||
|
}
|