1
Fork 0
satellite/modules/applications/misc.nix
2020-04-11 23:44:19 +03:00

22 lines
383 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
];
}