nixos/hosts/common/optional/lxd/lxd-preseed.nix

31 lines
491 B
Nix
Raw Normal View History

2024-06-29 14:40:10 +01:00
{ ... }:
let
lxd_profiles = {
"default" = (import ./profiles/default.nix);
};
in
{
virtualisation = {
2024-06-30 12:25:44 +01:00
incus = {
2024-06-29 22:18:42 +01:00
preseed = {
2024-06-30 12:25:44 +01:00
config = {
"core.https_address" = ":8443";
"images.auto_update_interval" = 9;
};
2024-06-29 14:40:10 +01:00
networks = [
lxd_profiles.default.network
];
profiles = [
lxd_profiles.default.profile
];
2024-06-29 22:18:42 +01:00
storage_pools = lxd_profiles.default.storage_pools;
2024-06-29 14:40:10 +01:00
};
};
};
}