Compare commits

...

2 Commits

Author SHA1 Message Date
0c15aad5c0 [development] Use claude unstable version 2025-11-08 13:12:37 -08:00
d87793d39b Fix live-usb networking configuration conflict
Disable networking.wireless to prevent conflict with NetworkManager.
The installation-cd-minimal base enables both, causing a build failure.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-08 13:10:07 -08:00
2 changed files with 3 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ in
config = mkIf cfg.enable {
home.packages = [
pkgs.claude-code
pkgs.unstable.claude-code
pkgs.codex
# Custom packages

View File

@@ -65,6 +65,8 @@
# Enable NetworkManager for easy wifi setup
networking.networkmanager.enable = true;
# Disable wireless networking (conflicts with NetworkManager)
networking.wireless.enable = false;
# Enable SSH daemon for remote access
services.openssh = {