nixos-config/machines/massicot/hardware-configuration.nix

24 lines
467 B
Nix
Raw Normal View History

2023-09-11 12:20:32 +00:00
{ modulesPath, ... }:
2023-07-29 15:34:24 +00:00
{
2023-09-11 12:20:32 +00:00
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub = {
efiSupport = true;
device = "nodev";
};
2024-08-25 09:45:58 +00:00
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/AC27-D9D6";
fsType = "vfat";
};
boot.initrd.availableKernelModules = [
"ata_piix"
"uhci_hcd"
"xen_blkfront"
];
2023-09-11 12:20:32 +00:00
boot.initrd.kernelModules = [ "nvme" ];
2024-08-25 09:45:58 +00:00
fileSystems."/" = {
device = "/dev/sda1";
fsType = "ext4";
};
2023-09-11 12:20:32 +00:00
}