14 lines
410 B
Nix
14 lines
410 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
boot.loader.grub = {
|
||
|
efiSupport = true;
|
||
|
efiInstallAsRemovable = true;
|
||
|
device = "nodev";
|
||
|
};
|
||
|
|
||
|
fileSystems."/boot" = { device = "/dev/disk/by-uuid/6514-E9BA"; fsType = "vfat"; };
|
||
|
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
|
||
|
boot.initrd.kernelModules = [ "nvme" ];
|
||
|
fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
|
||
|
}
|