grimm-nixos-laptop/specific/grimmauld-nixos-server/hardware-configuration.nix

21 lines
422 B
Nix
Raw Permalink Normal View History

2024-05-08 21:49:37 +02:00
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub.device = "/dev/sda";
2024-05-08 21:50:08 +02:00
boot.initrd.availableKernelModules = [
"ata_piix"
"uhci_hcd"
"xen_blkfront"
"vmw_pvscsi"
];
2024-05-08 21:49:37 +02:00
boot.initrd.kernelModules = [ "nvme" ];
2024-05-08 21:50:08 +02:00
fileSystems."/" = {
device = "/dev/sda3";
fsType = "ext4";
};
2024-05-08 21:49:37 +02:00
environment.sessionVariables = {
OMP_NUM_THREADS = "8";
};
}