{ machineConfig, ... }: { imports = [ ./modules/custom-build-vm.nix ]; config = { system.stateVersion = "23.11"; # Map host keys into VM and launch vm using `virt-viewer` virtualisation = let vmConfig = { virtualisation = { sharedHostKeys = true; virt-viewer = true; }; }; in { vmVariant = vmConfig; vmVariantWithBootLoader = vmConfig; }; # Networking networking.hostName = machineConfig.name; }; }