2024-10-24 03:51:20 +02:00
|
|
|
{ config, pkgs, lib, modulesPath, ... }:
|
2024-09-05 22:22:18 +02:00
|
|
|
{
|
2024-10-24 03:51:20 +02:00
|
|
|
imports = [
|
|
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
|
|
];
|
2024-09-05 22:22:18 +02:00
|
|
|
#enable qemu-guestagent
|
|
|
|
services.qemuGuest.enable = true;
|
|
|
|
}
|