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 Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "devbox"
version = "0.1.3"
version = "0.1.4"
edition = "2024"
description = "Isolated developer VMs for AI coding agents and humans. Safe by default."
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions src/runtime/incus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl IncusRuntime {
fn remote_image(image_type: &str) -> &'static str {
match image_type {
"ubuntu" => "images:ubuntu/24.04",
_ => "images:nixos/24.11",
_ => "images:nixos/25.11",
}
}

Expand Down Expand Up @@ -106,7 +106,7 @@ impl Runtime for IncusRuntime {
// Launch the VM
println!("Creating Incus VM '{vm}'...");
let image = Self::image_alias(&opts.image);
let mut launch_args = vec!["launch", image, &vm, "--vm"];
let mut launch_args = vec!["launch", image, &vm, "--vm", "-c", "security.secureboot=false"];

let cpu_str;
if opts.cpu > 0 {
Expand Down
Loading