Select the types of activity you want to include in your feed.
1{ pkgs, ... }: 2 3{ 4 environment.shellInit = '' 5 gpg-connect-agent /bye 6 export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket) 7 ''; 8 9 environment.systemPackages = with pkgs; [ 10 gnupg 11 ]; 12}