diff options
Diffstat (limited to 'users/grfn/system/home/modules/twitter.nix')
-rw-r--r-- | users/grfn/system/home/modules/twitter.nix | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/users/grfn/system/home/modules/twitter.nix b/users/grfn/system/home/modules/twitter.nix deleted file mode 100644 index ab5647e418aa..000000000000 --- a/users/grfn/system/home/modules/twitter.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ pkgs, lib, ... }: - -{ - imports = [ - ./lib/zshFunctions.nix - ]; - - home.packages = with pkgs; [ - t - ]; - - home.sessionVariables = { - TWITTER_WHOAMI = "glittershark1"; - }; - - programs.zsh = { - shellAliases = { - "mytl" = "t tl $TWITTER_WHOAMI"; - }; - - functions = { - favelast = "t fave $(t tl -l $1 | head -n1 | cut -d' ' -f1)"; - rtlast = "t rt $(t tl -l $1 | head -n1 | cut -d' ' -f1)"; - tthread = "t reply $(t tl -l $TWITTER_WHOAMI | head -n1 | cut -d' ' -f1) $@"; - }; - }; -} |