flake/modules/profiles/vm.nix

8 lines
173 B
Nix
Raw Normal View History

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