From 4bb95d1e29edcbaf218331f8745c87041371c4d4 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Fri, 4 Nov 2022 00:33:53 +0100 Subject: [PATCH] examples/vm-config: fix syntax error --- examples/qemu-vm/vm-config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/qemu-vm/vm-config.nix b/examples/qemu-vm/vm-config.nix index b3cd0d3..0091d8d 100644 --- a/examples/qemu-vm/vm-config.nix +++ b/examples/qemu-vm/vm-config.nix @@ -3,7 +3,7 @@ # Disable the hardened preset to improve VM performance disabledModules = [ ]; - imports = [ (modulesPath + "/virtualisation/qemu-vm.nix" ]; + imports = [ (modulesPath + "/virtualisation/qemu-vm.nix") ]; config = { virtualisation.graphics = false;