home-manager/home/packages.nix

33 lines
556 B
Nix
Raw Normal View History

2023-08-26 16:35:30 +00:00
{pkgs, ...}: {
config.home.packages = with pkgs; [
# Basic utils
unzip
magic-wormhole
# Important graphical applications
keepassxc
logseq
xournalpp
onlyoffice-bin
# Communication
webcord
telegram-desktop
signal-desktop
element-desktop
# Creative software
gimp
davinci-resolve
# Games
osu-lazer
# Misc
nerdfonts # Font with glyphs for status bar
comma # Run any binary from the repos with a comma `, cowsay neato`
gnome-decoder
tor-browser-bundle-bin
];
}