1
Fork 0
satellite/modules/applications/misc.nix
2020-04-11 22:48:54 +03:00

28 lines
449 B
Nix

{ pkgs, ... }: {
home-manager.users.adrielus.home.packages = with pkgs; [
# cmd stuff
tree # print a file structure
exa # ls replacement
mkpasswd # hash passwords
gnupg
# editors
vscodium
# chat apps
discord
slack
# gui studf
google-chrome
spectacle # take screenshots
unstable.elementary-planner # project planner
# for the memes
fortune
cowsay
lolcat
figlet
];
}