Build a bare bones bootable nixos qcow2 image suitable for running with libvirt/qemu/kvm.
nix-build '<nixpkgs/nixos>' -A config.system.build.qcow2 --arg configuration "{ imports = [ ./build-qcow2.nix ]; }"
Should create a results
directory that symlinks to a qcow2 image in the store.
I basically copied this from the openstack image in nixpkgs because I don't know a better way.
Update:
Thanks to @d-goldin I've just learnt I can start a VM using just:
nix-build '<nixpkgs/nixos>' -A vm -I nixos-config=./machine-config.nix build-vm
./result/bin/run-nixos-vm
Which is pretty neat, and I guess pretty common.
hi @gcr
I just tried this on nixos 22.05, on a system with KVM virtualization capabilities.
I was a bit surprised it worked as I wrote this gist almost 4 years ago, I posted the output here in case it's helpful.
https://gist.github.com/tarnacious/e16b54426296decc7f79e6ed0bbef576
Here is my libvirt configuration:
https://github.com/tarnacious/server-configuration/blob/f6a3bbea3ee7a6689522b6c16a4f82c951b4c00b/roles/thinkpad/templates/configuration.nix#L107-L118
I don't think the
ovmf
orswtpm
stuff is relevant, I think I added that to boot windows VMs.What might be relevant is that my user is a member of three possibly important groups
https://github.com/tarnacious/server-configuration/blob/main/roles/thinkpad/templates/configuration.nix#L184-L186
I guess it might be worth checking if you can start a VM with qemu on your machine with your user, either directly or via libvirt / virt-manager.
Sorry to hear you had problems with it and hope you work them out.
If you do get the image built, I was able to start the VM with these commands (it didn't work with the
build-vm
parameter)I still consider myself a novice, I know what you mean.