Patch in boot for vmware host

This commit is contained in:
TheWanderingCrow 2024-09-14 11:43:46 +00:00
parent 17c2f4e788
commit d70d4dc701
3 changed files with 8 additions and 1 deletions

7
hosts/vmware/boot.nix Normal file
View file

@ -0,0 +1,7 @@
{
boot.loader.grub = {
enable = true;
device = "/dev/sda1";
usOSProber = true;
}
}

View file

@ -3,6 +3,7 @@
}:{
imports = [
./hardware-configuration.nix
./boot.nix
../../modules
];
networking.hostName = "vmware";

View file

@ -1,5 +1,4 @@
{
imports = [
./boot.nix
];
}