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