mochi/.archive/hosts/gandalf/config/incus-preseed.nix

49 lines
902 B
Nix
Raw Normal View History

2025-03-06 09:51:33 -06:00
{...}: {
config = {
"core.https_address" = "10.1.1.15:8445"; # Need quotes around key
};
networks = [
{
config = {
"ipv4.address" = "auto"; # Need quotes around key
"ipv6.address" = "auto"; # Need quotes around key
};
description = "";
name = "incusbr0";
type = "";
project = "default";
}
];
storage_pools = [
{
config = {
source = "eru/incus";
};
description = "";
name = "default";
driver = "zfs";
}
];
profiles = [
{
2025-03-06 09:51:33 -06:00
config = {};
description = "";
devices = {
eth0 = {
name = "eth0";
network = "incusbr0";
type = "nic";
};
root = {
path = "/";
pool = "default";
type = "disk";
};
};
name = "default";
}
];
2025-03-06 09:51:33 -06:00
projects = [];
cluster = null;
}