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

  boot = {
    extraModulePackages = [];
    kernelModules = [];

    initrd = {
      availableKernelModules = ["virtio_pci" "usbhid"];
      kernelModules = [];
    };
  };

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

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

  swapDevices = [];
}