about summary refs log blame commit diff
path: root/home/modules/twitter.nix
blob: 9a6dc969b873ef70f4eaefb1f4eb45ed497890d2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                     
{ pkgs, lib, ... }:

{
  home.packages = with pkgs; [
    t
  ];

  home.sessionVariables = {
    TWITTER_WHOAMI = "glittershark1";
  };

  programs.zsh.shellAliases = {
    "mytl" = "t tl $TWITTER_WHOAMI";
  };
}