diff options
author | Griffin Smith <root@gws.fyi> | 2020-06-03T20·29-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-06-03T20·29-0400 |
commit | e516ee4ca28d5429d755dd40a50687e9ca770291 (patch) | |
tree | 33cc220d7bcffa45eea5e9d48413334895999324 /home/modules/twitter.nix | |
parent | 67c88d91757750bafef057a907eef3c338e43a9d (diff) |
twitter module, for t
Diffstat (limited to 'home/modules/twitter.nix')
-rw-r--r-- | home/modules/twitter.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/home/modules/twitter.nix b/home/modules/twitter.nix new file mode 100644 index 000000000000..9a6dc969b873 --- /dev/null +++ b/home/modules/twitter.nix @@ -0,0 +1,15 @@ +{ pkgs, lib, ... }: + +{ + home.packages = with pkgs; [ + t + ]; + + home.sessionVariables = { + TWITTER_WHOAMI = "glittershark1"; + }; + + programs.zsh.shellAliases = { + "mytl" = "t tl $TWITTER_WHOAMI"; + }; +} |