From c2e589011f17436462ffc910dfd1619b801ce6fd Mon Sep 17 00:00:00 2001 From: Harivansh Rathi Date: Thu, 9 Apr 2026 04:58:16 +0000 Subject: [PATCH] feat: add tea --- home/common.nix | 1 + home/tea.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 home/tea.nix diff --git a/home/common.nix b/home/common.nix index 4cba3ae..1f82b1f 100644 --- a/home/common.nix +++ b/home/common.nix @@ -26,6 +26,7 @@ ./skills.nix ./scripts.nix ./ssh.nix + ./tea.nix ./tmux.nix ./zsh.nix ]; diff --git a/home/tea.nix b/home/tea.nix new file mode 100644 index 0000000..3be1711 --- /dev/null +++ b/home/tea.nix @@ -0,0 +1,4 @@ +{ pkgs, ... }: +{ + home.packages = [ pkgs.tea ]; +}