make use of the qemu-guest nixpkgs profile in the vm profile

This commit is contained in:
Lyn 2024-10-24 03:51:20 +02:00
parent f716996616
commit f7609d5cf2

View file

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