Files
nixos/apps/tickrs/default.nix
T

22 lines
349 B
Nix

{ 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
'';
}