twitter module, for t

This commit is contained in:
Griffin Smith 2020-06-03 16:29:05 -04:00
parent 67c88d9175
commit e516ee4ca2
3 changed files with 16 additions and 2 deletions

15
home/modules/twitter.nix Normal file
View file

@ -0,0 +1,15 @@
{ pkgs, lib, ... }:
{
home.packages = with pkgs; [
t
];
home.sessionVariables = {
TWITTER_WHOAMI = "glittershark1";
};
programs.zsh.shellAliases = {
"mytl" = "t tl $TWITTER_WHOAMI";
};
}