.dotfiles/dot_config/flake/machines/saffron/hardware-configuration.nix
Tyler Mayoff 155be8e821
Some checks are pending
build flakes / build (x86_64-linux, wash, linux) (push) Waiting to run
Renovate / renovate (push) Waiting to run
hostPlatform
2025-11-29 11:31:14 -05:00

12 lines
411 B
Nix

{modulesPath, ...}: {
imports = [(modulesPath + "/profiles/qemu-guest.nix")];
boot.loader.grub.device = "/dev/vda";
boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi"];
boot.initrd.kernelModules = ["nvme"];
fileSystems."/" = {
device = "/dev/vda1";
fsType = "ext4";
};
swapDevices = [{device = "/dev/vdb";}];
nixpkgs.hostPlatform = "x86_64-linux";
}