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