27 lines
607 B
Plaintext
27 lines
607 B
Plaintext
// Test Repository Configuration
|
|
// Used for testing the NexusForge hierarchy
|
|
|
|
// 1. Native Core (Signed, Fast, Delta-Ready)
|
|
repo "nexus-core" {
|
|
type "native"
|
|
url "https://repo.nexusos.io/v1"
|
|
key "ed25519-test-key-abc123"
|
|
priority 100
|
|
}
|
|
|
|
// 2. Private Tools (Git Mode - Obtainium Style)
|
|
repo "maiwald-toolkit" {
|
|
type "git"
|
|
url "https://git.maiwald.work/Nexus/NexusToolKit.git"
|
|
branch "main"
|
|
priority 90
|
|
}
|
|
|
|
// 3. The Infinite Fallback (Nix Graft)
|
|
repo "nix-unstable" {
|
|
type "graft"
|
|
backend "nix"
|
|
url "https://nixos.org/channels/nixpkgs-unstable"
|
|
priority 10
|
|
}
|