about summary refs log blame commit diff stats
path: root/nix-conf/machines/djmuk2/hardware-configuration.nix
blob: 5c421f9fd445566c04ec1efb3d55f566d6a7a865 (plain) (tree)
1
2
3
4
5
6
7
8

                     





                                                           



                                           




                                        
                                         




                                          
 
{ modulesPath, ... }:
{
  imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
  boot.loader.grub = {
    efiSupport = true;
    efiInstallAsRemovable = true;
    device = "nodev";
  };
  fileSystems."/boot" = {
    device = "/dev/disk/by-uuid/4875-017B";
    fsType = "vfat";
  };
  boot.initrd.availableKernelModules = [
    "ata_piix"
    "uhci_hcd"
    "xen_blkfront"
  ];
  boot.initrd.kernelModules = [ "nvme" ];
  fileSystems."/" = {
    device = "/dev/mapper/ocivolume-root";
    fsType = "xfs";
  };

}