- netboot-base.nix with SSH key auth - Launch scripts for node01/02/03 - Node configuration.nix and disko.nix - Nix modules for first-boot automation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
10 lines
No EOL
314 B
Rust
10 lines
No EOL
314 B
Rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
let protoc_path = protoc_bin_vendored::protoc_bin_path()?;
|
|
std::env::set_var("PROTOC", protoc_path);
|
|
|
|
tonic_build::configure()
|
|
.build_server(true)
|
|
.build_client(true)
|
|
.compile(&["proto/k8s.proto"], &["proto"])?;
|
|
Ok(())
|
|
} |