From f7609d5cf22a05bf40967baf77ccdc89626b38cf Mon Sep 17 00:00:00 2001 From: Lyn Date: Thu, 24 Oct 2024 03:51:20 +0200 Subject: [PATCH] make use of the qemu-guest nixpkgs profile in the vm profile --- modules/profiles/vm.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/profiles/vm.nix b/modules/profiles/vm.nix index 75c7eab..890c250 100644 --- a/modules/profiles/vm.nix +++ b/modules/profiles/vm.nix @@ -1,5 +1,8 @@ -{ config, pkgs, lib, ... }: +{ config, pkgs, lib, modulesPath, ... }: { + imports = [ + (modulesPath + "/profiles/qemu-guest.nix") + ]; #enable qemu-guestagent services.qemuGuest.enable = true; } \ No newline at end of file