Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add opencode commands

+30
+15
default-home.nix
··· 263 263 source = ./scripts; 264 264 recursive = true; 265 265 }; 266 + 267 + home.file.".opencode" = { 268 + source = ./opencode; 269 + recursive = true; 270 + }; 271 + 272 + home.file.".luacheckrc" = { 273 + text = '' 274 + globals = { 275 + "vim", 276 + "vis", 277 + } 278 + ''; 279 + }; 280 + 266 281 age.secrets.catgirl-libera = { 267 282 file = ./secrets/catgirl-libera.age; 268 283 path = "${config.xdg.configHome}/catgirl/libera";
+6
host-specific/aleister-noah.nix
··· 342 342 source = ../scripts; 343 343 recursive = true; 344 344 }; 345 + 346 + home.file.".opencode" = { 347 + source = ../opencode; 348 + recursive = true; 349 + }; 350 + 345 351 home.file.".luacheckrc" = { 346 352 text = '' 347 353 globals = {
+9
opencode/todo.md
··· 1 + --- 2 + description: Implement TODOs assigned to OpenCode 3 + agent: build 4 + model: opencode-go/kimi-k2.5 5 + --- 6 + 7 + Look for further instructions in TODO(oc): <instruction> comments. If pointed to a 8 + specific line, function, file, or other grouping of code, only look for TODOs that are 9 + assigned to you in that location. Ask clarifying questions and write tests for changes.