Begin getting unifi/openstack setup working
All checks were successful
/ dev-shell (push) Successful in 18s
/ terraform-providers (push) Successful in 11s
/ rust-packages (push) Successful in 23s
/ check (push) Successful in 1m29s

Now I can create an instance, get NixOS on it, with
working IPv6 connectivity
This commit is contained in:
Kaare Hoff Skovgaard 2025-07-08 16:33:18 +02:00
parent 1945038c90
commit fbed2265dd
Signed by: khs
GPG key ID: C7D890804F01E9F0
14 changed files with 47 additions and 18 deletions

View file

@ -0,0 +1,16 @@
{
config,
lib,
modulesPath,
...
}:
let
cfg = config.khscodes.virtualisation.qemu-guest;
in
{
options.khscodes.virtualisation.qemu-guest = {
enable = lib.mkEnableOption "Configures machine with NixOS profile for qemu guest";
};
config = lib.mkIf cfg.enable (import "${modulesPath}/profiles/qemu-guest.nix" { });
}