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-04-12 12:45:29 +02:00
|
|
|
typespeed
|
2020-04-11 21:48:54 +02:00
|
|
|
|
|
|
|
# editors
|
2020-04-08 18:36:58 +02:00
|
|
|
vscodium
|
2020-04-11 21:48:54 +02:00
|
|
|
|
|
|
|
# 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-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
|
|
|
|
|
|
|
|
# other stuff
|
2020-04-11 21:48:54 +02:00
|
|
|
spectacle # take screenshots
|
|
|
|
unstable.elementary-planner # project planner
|
2020-04-14 20:51:22 +02:00
|
|
|
vlc # video player
|
2020-04-08 18:36:58 +02:00
|
|
|
];
|
|
|
|
}
|