summaryrefslogtreecommitdiff
path: root/config/hardware/default.nix
blob: a6219f86def3dc7d15323434731d458390a5da63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ nixos-hardware, ... }: {
  imports = [
    ./hardware-configuration.nix
    nixos-hardware.nixosModules.pcengines-apu
    nixos-hardware.nixosModules.common-pc-ssd
    nixos-hardware.nixosModules.common-cpu-amd
  ];
  personal.hardware = {
    usb.enable = true;
    firmwareNonFree.enable = true;
  };
  swapDevices = [{ device = "/swap"; }];
}