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











                                                                                     
{ modulesPath, ... }:
{
  imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
  boot.loader.grub = {
    efiSupport = true;
    efiInstallAsRemovable = true;
    device = "nodev";
  };
  fileSystems."/boot" = { device = "/dev/disk/by-uuid/C149-C30B"; fsType = "vfat"; };
  boot.initrd.kernelModules = [ "nvme" ];
  fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
}