Update Genesis for hardware support

This commit is contained in:
Greg Hellings
2025-12-26 23:50:53 -06:00
parent 2910ffce5b
commit c5cff5667d
3 changed files with 43 additions and 20 deletions
+9 -7
View File
@@ -19,10 +19,15 @@
};
# Bootloader.
boot.loader.grub = {
enable = true;
device = "/dev/vda";
useOSProber = true;
boot.loader = {
efi = {
canTouchEfiVariables = true;
};
systemd-boot = {
enable = true;
configurationLimit = 10;
edk2-uefi-shell.enable = true;
};
};
environment.systemPackages = with pkgs; [
@@ -31,7 +36,4 @@
];
networking.hostName = "genesis"; # Define your hostname.
virtualisation.oci-containers.containers = {
};
}