summaryrefslogtreecommitdiffstats
path: root/krebs/1systems/ponte/hw.nix
blob: 83b537484e89fb96753ee901c43edf1ada7fcd8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ modulesPath, ... }:
{
  imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
  boot.loader.grub = {
    efiSupport = true;
    efiInstallAsRemovable = true;
    device = "nodev";
    copyKernels = false;
  };
  fileSystems."/boot" = { device = "/dev/disk/by-uuid/628A-7F3B"; fsType = "vfat"; };
  boot.initrd.kernelModules = [ "nvme" ];
  fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
}