feat(apps): add tickrs stock TUI with custom watchlist

This commit is contained in:
kenji
2025-12-30 10:39:14 -06:00
parent 8c225a381d
commit df56ff3579
2 changed files with 22 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ tickrs ];
xdg.configFile."tickrs/config.yml".text = ''
symbols:
- NVDA
- AMD
- LAC
- ONDS
- SLV
- GOOGL
- TSM
show_volumes: true
show_x_axis: true
show_y_axis: true
time_frame: Day
update_frequency: 1
chart_type: Candle
'';
}
+1
View File
@@ -2,5 +2,6 @@
imports = [
../../apps/btop
../../apps/jellyfin
../../apps/tickrs
];
}