flake/modules/profiles/vm.nix

14 lines
183 B
Nix
Raw Permalink Normal View History

{
2024-10-29 08:55:56 +01:00
config,
pkgs,
lib,
modulesPath,
...
}: {
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
#enable qemu-guestagent
services.qemuGuest.enable = true;
2024-10-29 08:55:56 +01:00
}