1
Fork 0
satellite/modules/applications/misc.nix

35 lines
757 B
Nix
Raw Normal View History

2020-04-08 18:36:58 +02:00
{ pkgs, ... }: {
2020-04-08 19:09:37 +02:00
home-manager.users.adrielus.home.packages = with pkgs; [
# cmd stuff
tree # print a file structure
exa # ls replacement
mkpasswd # hash passwords
2020-04-10 13:51:37 +02:00
gnupg
2020-05-13 11:34:15 +02:00
typespeed # speed typing game
unixtools.xxd # to dump binary stuff into a text file (used it for a ctf)
youtube-dl # download from youtube
neofetch # display system information
2020-05-30 20:59:07 +02:00
xclip # copy paste stuff
# editors
2020-04-08 18:36:58 +02:00
vscodium
# chat apps
2020-04-08 18:36:58 +02:00
discord
2020-04-09 12:11:58 +02:00
slack
2020-04-19 19:26:10 +02:00
zoom-us # for online classes / church and stuff
2020-04-12 12:45:29 +02:00
# browsers
google-chrome
2020-04-12 12:45:29 +02:00
brave
# other stuff
spectacle # take screenshots
2020-04-14 20:51:22 +02:00
vlc # video player
2020-05-10 19:48:52 +02:00
gimp # image editing
korganizer # calendar
libreoffice # free office suite
2020-05-10 19:48:52 +02:00
akonadi
2020-04-08 18:36:58 +02:00
];
}