claude-code-schedule 0.1.0

Claude Code Schedule by Ian Macalinao - Schedule Claude Code commands to run overnight to refresh rate limits
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  pkgs,
  ...
}:

{
  dotenv.enable = true;

  packages = with pkgs; [
    git
    nixfmt-rfc-style
    rustup
  ];
}