From 632af3155763374a1289eda9d9ab8d83f7c55a64 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Wed, 26 Apr 2023 00:06:21 -0400 Subject: [PATCH] fix grub --- machines/productivity-vm/configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/machines/productivity-vm/configuration.nix b/machines/productivity-vm/configuration.nix index 5e4df4c..55987b9 100644 --- a/machines/productivity-vm/configuration.nix +++ b/machines/productivity-vm/configuration.nix @@ -22,6 +22,12 @@ # mode = "0400"; # }; }; + # Make the vm boot + boot.loader.grub = { + enable = true; + device = "/dev/sda"; + useOSProber = true; + }; # Setup system configuration nathan = { programs = { games = false; }; @@ -41,7 +47,7 @@ }; config = { isDesktop = true; - setupGrub = true; + setupGrub = false; nix.autoUpdate = false; harden = false; };