summaryrefslogtreecommitdiff
path: root/Rexfile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-17 22:53:36 +0200
committerPaul Buetow <paul@buetow.org>2026-03-17 22:53:36 +0200
commit6c8da65b3148a04925630a77bba55532d02fb41c (patch)
tree1883b88f95e40fcdcf4283759e149cb8fdbc7afa /Rexfile
parent3661a2db821dad27d2032ec5bbf23923888ecafe (diff)
add f3s skill and reference docs for FreeBSD/k3s homelab
Diffstat (limited to 'Rexfile')
-rw-r--r--Rexfile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Rexfile b/Rexfile
index 8587a23..2663df8 100644
--- a/Rexfile
+++ b/Rexfile
@@ -69,8 +69,8 @@ sub opencode_config_content {
return JSON::PP->new->ascii->pretty->canonical->encode(
{
- '$schema' => 'https://opencode.ai/config.json',
- 'model' => 'ollama/nemotron-3-super:latest',
+ '$schema' => 'https://opencode.ai/config.json',
+ 'model' => 'ollama/qwen3-coder:30b',
'provider' => {
'ollama' => {
'models' => {
@@ -83,6 +83,9 @@ sub opencode_config_content {
'nemotron-3-super:latest' => {
'name' => 'Nemotron 3 Super'
},
+ 'qwen3-coder-next' => {
+ 'name' => 'Qwen3 Coder Next'
+ },
'qwen3-coder:30b' => {
'name' => 'Qwen3 Coder 30B'
},
@@ -244,7 +247,7 @@ task 'home_prompts', sub {
my $nested = "$target/$leaf";
if ( -l $nested && readlink($nested) eq $source ) {
CORE::unlink($nested) or die "Could not remove nested $label symlink at $nested: $!";
- rmdir $target or die "Could not remove legacy $label directory at $target: $!";
+ rmdir $target or die "Could not remove legacy $label directory at $target: $!";
}
else {
die "Refusing to overwrite existing directory at $target while linking $label";