From cc681ffe91cb1fa00ba9aab7d26fdc0e31e10568 Mon Sep 17 00:00:00 2001 From: kenji Date: Sat, 10 Jan 2026 22:54:24 -0600 Subject: [PATCH] add(apps): ttyper --- apps/ttyper/default.nix | 5 +++++ modules/home/apps-optional.nix | 1 + 2 files changed, 6 insertions(+) create mode 100644 apps/ttyper/default.nix diff --git a/apps/ttyper/default.nix b/apps/ttyper/default.nix new file mode 100644 index 0000000..6ea3ec0 --- /dev/null +++ b/apps/ttyper/default.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + ttyper + ]; +} diff --git a/modules/home/apps-optional.nix b/modules/home/apps-optional.nix index 3e135e7..47c7029 100644 --- a/modules/home/apps-optional.nix +++ b/modules/home/apps-optional.nix @@ -6,5 +6,6 @@ ../../apps/claude ../../apps/delfin ../../apps/jellyfin-mpv-shim + ../../apps/ttyper ]; }