Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Both are FOSS with independent governance (no Big Tech).
### Package Management

- **Primary**: Guix (guix.scm)
- **Fallback**: Nix (flake.nix)
- **Fallback**: Guix (flake.guix)
- **JS deps**: Deno (deno.json imports)

### Security Requirements
Expand Down
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ updates:
schedule:
interval: "weekly"

# Nix flakes
- package-ecosystem: "nix"
# Guix flakes
- package-ecosystem: "guix"
directory: "/"
schedule:
interval: "weekly"
18 changes: 9 additions & 9 deletions .machine_readable/contractiles/Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ test *args:
@echo "Running tests..."
# TODO: Add test command
# Rust: cargo test {{args}}
# ReScript: npm test
# AffineScript: npm test
# Elixir: mix test

# Run tests with verbose output
Expand All @@ -130,7 +130,7 @@ fmt:
@echo "Formatting..."
# TODO: Add format command
# Rust: cargo fmt
# ReScript: npm run format
# AffineScript: npm run format
# Elixir: mix format

# Check formatting without changes
Expand Down Expand Up @@ -184,7 +184,7 @@ deps:
@echo "Installing dependencies..."
# TODO: Add deps command
# Rust: (automatic with cargo)
# ReScript: npm install
# AffineScript: npm install
# Elixir: mix deps.get

# Audit dependencies for vulnerabilities
Expand Down Expand Up @@ -323,8 +323,8 @@ validate-rsr:
for f in .well-known/security.txt .well-known/ai.txt .well-known/humans.txt; do
[ -f "$f" ] || MISSING="$MISSING $f"
done
if [ ! -f "guix.scm" ] && [ ! -f ".guix-channel" ] && [ ! -f "flake.nix" ]; then
MISSING="$MISSING guix.scm/flake.nix"
if [ ! -f "guix.scm" ] && [ ! -f ".guix-channel" ] && [ ! -f "flake.guix" ]; then
MISSING="$MISSING guix.scm/flake.guix"
fi
if [ -n "$MISSING" ]; then
echo "MISSING:$MISSING"
Expand Down Expand Up @@ -360,7 +360,7 @@ state-phase:
@grep -oP '\(phase\s+\.\s+\K[^)]+' STATE.scm 2>/dev/null | head -1 || echo "unknown"

# ═══════════════════════════════════════════════════════════════════════════════
# GUIX & NIX
# GUIX & GUIX
# ═══════════════════════════════════════════════════════════════════════════════

# Enter Guix development shell (primary)
Expand All @@ -371,9 +371,9 @@ guix-shell:
guix-build:
guix build -f guix.scm

# Enter Nix development shell (fallback)
nix-shell:
@if [ -f "flake.nix" ]; then nix develop; else echo "No flake.nix"; fi
# Enter Guix development shell (fallback)
guix-shell:
@if [ -f "flake.guix" ]; then guix develop; else echo "No flake.guix"; fi

# ═══════════════════════════════════════════════════════════════════════════════
# HYBRID AUTOMATION
Expand Down
Loading
Loading