From 79dc18cc7919f5e2df9fe1c9ac04cbfd16d87b48 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Sun, 28 Jul 2024 13:44:02 +0200 Subject: [PATCH] Update demo machine configuration --- flake.nix | 1 + machines/demo/default.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 5199401..6123421 100644 --- a/flake.nix +++ b/flake.nix @@ -49,6 +49,7 @@ demo = let clean-state-demo = nixpkgsFor.${system}.writeShellScriptBin "run" '' ${self.packages.${system}.demo}/bin/run-desk-os-demo-vm + # Remove disk image forcing demo VM to start with a clean state every time if [ -f ./desk-os-demo.qcow2 ]; then rm ./desk-os-demo.qcow2 fi diff --git a/machines/demo/default.nix b/machines/demo/default.nix index 13226dc..12bb948 100644 --- a/machines/demo/default.nix +++ b/machines/demo/default.nix @@ -10,6 +10,7 @@ qemu.options = [ "-enable-kvm" "-vga virtio" + "-display gtk,full-screen=on,grab-on-hover=on" ]; };