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

28 lines
449 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
# 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
# gui studf
google-chrome
spectacle # take screenshots
unstable.elementary-planner # project planner
# for the memes
fortune
cowsay
lolcat
figlet
2020-04-08 18:36:58 +02:00
];
}