summaryrefslogtreecommitdiff
path: root/hosts/atlas/hardware-configuration.nix
blob: 46b295b91ce1a640e90782e7a7fd3428ef398bfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{modulesPath, ...}: {
  imports = [
    (modulesPath + "/profiles/qemu-guest.nix")
  ];

  boot.initrd.availableKernelModules = ["virtio_pci" "usbhid"];
  boot.initrd.kernelModules = [];
  boot.kernelModules = [];
  boot.extraModulePackages = [];

  fileSystems."/" = {
    device = "/dev/disk/by-uuid/f0c84809-83f5-414b-a973-496d25d74c6d";
    fsType = "ext4";
  };

  fileSystems."/boot" = {
    device = "/dev/disk/by-uuid/A253-0826";
    fsType = "vfat";
  };

  swapDevices = [];
}