flake/modules/profiles/vm.nix
2024-10-29 08:55:56 +01:00

13 lines
183 B
Nix

{
config,
pkgs,
lib,
modulesPath,
...
}: {
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
#enable qemu-guestagent
services.qemuGuest.enable = true;
}