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; [
|
2020-04-11 21:48:54 +02:00
|
|
|
# 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
|
2020-06-04 21:54:39 +02:00
|
|
|
feh # image viewer
|
2020-10-07 10:11:03 +02:00
|
|
|
unzip # for working with .zip files
|
2020-07-03 17:24:18 +02:00
|
|
|
speedtest-cli # test the internet speed and stuff
|
2020-10-07 10:11:03 +02:00
|
|
|
openssl
|
|
|
|
pkgconfig
|
|
|
|
ngrok
|
|
|
|
hugo
|
2020-04-11 21:48:54 +02:00
|
|
|
|
|
|
|
# editors
|
2020-10-07 10:11:03 +02:00
|
|
|
# vscodium
|
|
|
|
vscode
|
2020-07-03 17:24:18 +02:00
|
|
|
vim
|
|
|
|
neovim
|
|
|
|
emacs
|
2020-04-11 21:48:54 +02:00
|
|
|
|
|
|
|
# chat apps
|
2020-04-08 18:36:58 +02:00
|
|
|
discord
|
2020-10-07 10:11:03 +02:00
|
|
|
# discord-canary
|
|
|
|
deluge
|
2020-04-09 12:11:58 +02:00
|
|
|
slack
|
2020-07-03 17:24:18 +02:00
|
|
|
tdesktop # telegram for the desktop
|
|
|
|
zoom-us
|
2020-07-16 10:39:15 +02:00
|
|
|
teams
|
2020-04-11 21:48:54 +02:00
|
|
|
|
2020-04-12 12:45:29 +02:00
|
|
|
# browsers
|
2020-04-11 21:48:54 +02:00
|
|
|
google-chrome
|
2020-04-12 12:45:29 +02:00
|
|
|
brave
|
2020-10-07 10:11:03 +02:00
|
|
|
firefox
|
2020-04-12 12:45:29 +02:00
|
|
|
|
|
|
|
# other stuff
|
2020-06-17 22:18:06 +02:00
|
|
|
milkytracker # music tracker thingy
|
2020-04-11 21:48:54 +02:00
|
|
|
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
|
2020-05-14 14:44:05 +02:00
|
|
|
libreoffice # free office suite
|
2020-05-30 22:19:57 +02:00
|
|
|
# edopro # yugioh simulator (my derivation doesn't work yet)
|
2020-05-10 19:48:52 +02:00
|
|
|
akonadi
|
2020-10-07 10:11:03 +02:00
|
|
|
obs-studio # video recorder
|
|
|
|
# blueman # bluetooth manager
|
|
|
|
|
|
|
|
# Nes emulators and stuff
|
|
|
|
zsnes
|
|
|
|
higan
|
|
|
|
fceux
|
2020-04-08 18:36:58 +02:00
|
|
|
];
|
|
|
|
}
|