diff --git a/.sisyphus/ralph-loop.local.md b/.sisyphus/ralph-loop.local.md index f643e13..84c7e5d 100644 --- a/.sisyphus/ralph-loop.local.md +++ b/.sisyphus/ralph-loop.local.md @@ -2,11 +2,13 @@ active: true iteration: 2 max_iterations: 500 -completion_promise: "DONE" +completion_promise: "VERIFIED" initial_completion_promise: "DONE" +verification_attempt_id: "8bd02d34-4ca9-4686-b3ad-ae8a2330ad40" started_at: "2026-04-10T15:43:59.279Z" session_id: "ses_28863d32affeOW6Iiz2415uZSk" ultrawork: true +verification_pending: true strategy: "continue" message_count_at_start: 169 --- diff --git a/AGENTS.md b/AGENTS.md index aa887ca..44d39ca 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -22,12 +22,12 @@ flake.nix ## Critical gotchas -- **Determinate Nix on macOS (tech debt)**: macOS currently runs Determinate Nix (commercial downstream). `modules/shared/nix.nix` sets `nix.enable = !pkgs.stdenv.isDarwin` — on darwin, nix-darwin does NOT manage: nix daemon, `/etc/nix/nix.conf`, nix version, `nix.settings`. All nix configuration on macOS is controlled by Determinate's `determinate-nixd`. The `nix.settings` block (flakes, warn-dirty) only applies on NixOS/WSL. **nix-darwin officially recommends Lix installer (not Determinate) as of 2025-12.** Migration to Lix would restore `nix.enable = true` and unified `nix.settings` across all 3 devices. README still references `install.determinate.systems` — update if/when migrating. +- **Determinate Nix on macOS (tech debt)**: macOS currently runs Determinate Nix (commercial downstream). `modules/shared/nix.nix` sets `nix.enable = !pkgs.stdenv.isDarwin` — on darwin, nix-darwin does NOT manage: nix daemon, `/etc/nix/nix.conf`, nix version, `nix.settings`. All nix configuration on macOS is controlled by Determinate's `determinate-nixd`. The `nix.settings` block (flakes, warn-dirty) only applies on NixOS/WSL. **nix-darwin officially recommends Lix installer (not Determinate) as of 2025-12.** README already updated to recommend Lix for new installs. Migration to Lix would restore `nix.enable = true` and unified `nix.settings` across all 3 devices. - **catppuccin.nvim disabled**: `catppuccin.nvim.enable = false` in `home/theme.nix` due to `catppuccin.lib.detect_integrations` require check failure in nixpkgs. Re-test periodically. - **catppuccin module name**: Uses `catppuccin.homeModules.catppuccin` (not the old `homeManagerModules`). - **Homebrew tap casks**: Casks from taps need full path in the casks list (e.g. `"goooler/repo/fl-clash"`), not just the short name. - **`onActivation.cleanup = "zap"`**: Any brew formula/cask NOT declared in `modules/darwin/default.nix` WILL be removed on rebuild. Be comprehensive. -- **Repo location**: The repo lives at `~/Developer/nix-config`, NOT `~/.config/nix-config`. The `rebuild` fish abbreviation references `~/.config/nix-config` — symlink or update if needed. +- **Repo location**: The repo lives at `~/Developer/nix-config`. Fish abbreviations (`rebuild`, `update`) reference this path. - **First-time bootstrap requires sudo**: `sudo nix run nix-darwin -- switch --flake .#mac-mini` (not `darwin-rebuild` which doesn't exist yet). ## Commands diff --git a/home/shell/fish.nix b/home/shell/fish.nix index 472b37d..cde8d10 100644 --- a/home/shell/fish.nix +++ b/home/shell/fish.nix @@ -25,7 +25,7 @@ http = "xh"; # Nix - update = "nix flake update --flake ~/.config/nix-config"; + update = "nix flake update --flake ~/Developer/nix-config"; }; interactiveShellInit = '' @@ -43,9 +43,9 @@ # Platform-specific rebuild command if test (uname) = Darwin - abbr --add rebuild "darwin-rebuild switch --flake ~/.config/nix-config" + abbr --add rebuild "sudo darwin-rebuild switch --flake ~/Developer/nix-config" else - abbr --add rebuild "sudo nixos-rebuild switch --flake ~/.config/nix-config" + abbr --add rebuild "sudo nixos-rebuild switch --flake ~/Developer/nix-config" end # WSL clipboard