karapace/examples/rust-dev.toml
Marco Allegretti 155efdf7c9 feat: example manifests and service files
- examples/minimal.toml — bare openSUSE system
- examples/dev.toml — developer tools (git, vim, tmux, gcc, clang)
- examples/gui-dev.toml — GUI development with GPU + audio passthrough
- examples/ubuntu-dev.toml — Ubuntu-based with Node.js, Python, build-essential
- examples/rust-dev.toml — Rust development environment
- data/dbus/org.karapace.Manager1.service — D-Bus service activation file
- data/systemd/karapace-dbus.service — hardened systemd user unit
2026-02-22 18:38:24 +01:00

20 lines
483 B
TOML

# Rust development environment — ready for Rust/Cargo development.
#
# Usage:
# karapace build examples/rust-dev.toml
# karapace enter <env_id>
# # Then inside: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
manifest_version = 1
[base]
image = "rolling" # openSUSE Tumbleweed
[system]
packages = ["git", "curl", "gcc", "make", "cmake", "pkg-config", "openssl-devel", "gdb"]
[mounts]
workspace = "~/projects:/workspace"
[runtime]
backend = "namespace"