update drawin

Changed files
+56 -10
.aider.tags.cache.v3
home
profiles
+30
.aider.chat.history.md
··· 1 + 2 + # aider chat started at 2025-02-07 16:38:26 3 + 4 + > Newer aider version v0.74.1 is available. 5 + > python3.11 -m pip install --upgrade --upgrade-strategy only-if-needed aider-chat 6 + > Run pip install? (Y)es/(N)o [Yes]: y 7 + > /nix/store/8hkpwrgr7h06di861vhx612xfkrjzpak-python3-3.11.11/bin/python3.11: No module named pip 8 + > Add .aider*, .env to .gitignore (recommended)? (Y)es/(N)o [Yes]: n 9 + > /nix/store/cyihi1p1d92g2zg1frmppbm97h893adk-aider-chat-0.62.0/bin/aider 10 + > Warning: gpt-4o-2024-08-06 expects these environment variables 11 + > - OPENAI_API_KEY: Not set 12 + > If you just set these environment variables using `setx` you may need to restart your terminal or command prompt for the changes to take effect. 13 + > Warning: gpt-4o-mini expects these environment variables 14 + > - OPENAI_API_KEY: Not set 15 + > If you just set these environment variables using `setx` you may need to restart your terminal or command prompt for the changes to take effect. 16 + > You can skip this check with --no-show-model-warnings 17 + > https://aider.chat/docs/llms/warnings.html 18 + > Open documentation url for more info? (Y)es/(N)o [Yes]: n 19 + > Aider v0.62.0 20 + > Main model: gpt-4o-2024-08-06 with diff edit format 21 + > Weak model: gpt-4o-mini 22 + > Git repo: .git with 293 files 23 + > Repo-map: using 1024 tokens, auto refresh 24 + > Use /help <question> for help, run "aider --help" to see cmd line args 25 + > 26 + > 27 + > ^C again to exit 28 + > 29 + > 30 + > ^C KeyboardInterrupt
+6
.aider.input.history
··· 1 + 2 + # 2025-02-10 16:27:55.065630 3 + +y 4 + 5 + # 2025-02-10 16:28:04.851326 6 + +n
.aider.tags.cache.v3/cache.db

This is a binary file and will not be displayed.

+3 -3
flake.lock
··· 1208 1208 }, 1209 1209 "unstable": { 1210 1210 "locked": { 1211 - "lastModified": 1738680400, 1212 - "narHash": "sha256-ooLh+XW8jfa+91F1nhf9OF7qhuA/y1ChLx6lXDNeY5U=", 1211 + "lastModified": 1741173522, 1212 + "narHash": "sha256-k7VSqvv0r1r53nUI/IfPHCppkUAddeXn843YlAC5DR0=", 1213 1213 "owner": "nixos", 1214 1214 "repo": "nixpkgs", 1215 - "rev": "799ba5bffed04ced7067a91798353d360788b30d", 1215 + "rev": "d69ab0d71b22fa1ce3dbeff666e6deb4917db049", 1216 1216 "type": "github" 1217 1217 }, 1218 1218 "original": {
+16 -7
flake.nix
··· 124 124 125 125 nixpkgsFor = forAllSystems (system: import nixpkgs { 126 126 inherit system; 127 - config.allowUnfreePredicate = pkg: builtins.elem (nixpkgs.lib.getName pkg) [ 128 - "ripcord" 129 - "VCV-Rack" 130 - "SunVox" 131 - "renoise" 132 - "graphite-cli" 133 - ]; 127 + # This doesn't work... 128 + # on darwin, I need to export ALLOW_NIXPKGS_UNFREE=1 129 + # and pass --impure (have to manually copy the `nrd` command, it gets passed to the cd) 130 + config = { 131 + allowUnfree = true; 132 + allowUnfreePredicate = _: true; 133 + }; 134 + # config.allowUnfree = true; 135 + #config.allowUnfreePredicate = pkg: builtins.elem (nixpkgs.lib.getName pkg) [ 136 + # "ripcord" 137 + # "VCV-Rack" 138 + # "SunVox" 139 + # "renoise" 140 + # "graphite-cli" 141 + # "claude-code" 142 + #]; 134 143 # config.permittedInsecurePackages = [ 135 144 # "python3.10-django-3.1.14" # Needed for archivebox deployments on curve 136 145 # # Check when archive box updates it's dependeny
+1
home/profiles/cli/default.nix
··· 1 1 { lib, pkgs, config, ... }: 2 2 { 3 3 home.packages = with pkgs; [ 4 + unstable.claude-code 4 5 binutils 5 6 # coreutils 6 7 dnsutils