tvl-depot/home/modules/twitter.nix

16 lines
214 B
Nix
Raw Normal View History

2020-06-03 22:29:05 +02:00
{ pkgs, lib, ... }:
{
home.packages = with pkgs; [
t
];
home.sessionVariables = {
TWITTER_WHOAMI = "glittershark1";
};
programs.zsh.shellAliases = {
"mytl" = "t tl $TWITTER_WHOAMI";
};
}