Skip to content

Commit b0c8a06

Browse files
committed
Fix Vagrant QEMU provider network configuration error
- Comment out unsupported network configurations for QEMU provider - Add clarification that port forwarding should be configured via QEMU settings - Resolves synced_folders plugin error preventing VM startup
1 parent 650bbfd commit b0c8a06

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

Vagrantfile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@ Vagrant.configure("2") do |config|
1515
config.ssh.insert_key = true
1616
config.ssh.forward_agent = true
1717

18-
# Forward a reasonable port range for development (20 ports)
19-
(3000..3019).each do |port|
20-
config.vm.network "forwarded_port", guest: port, host: port
21-
end
22-
23-
# Forward Playwright port
24-
config.vm.network "forwarded_port", guest: 9222, host: 9222
25-
2618
# QEMU Provider Configuration
2719
config.vm.provider "qemu" do |qemu|
2820
qemu.name = "nix-dev-vm"

common/claude-code/settings.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
22
"$schema": "https://json.schemastore.org/claude-code-settings.json",
33
"includeCoAuthoredBy": false,
4-
"model": "opus",
4+
"model": "sonnet",
55
"enableAllProjectMcpServers": true,
66
"enabledMcpjsonServers": [
77
"code-reasoning",
88
"sequential-thinking",
9-
"context7"
9+
"context7",
10+
"filesystem",
11+
"memory"
1012
],
1113
"feedbackSurveyState": {
1214
"lastShownTime": 1754125509075

0 commit comments

Comments
 (0)