about summary refs log tree commit diff stats
path: root/hosts/IDOHVE/hardware/hardware.nix
blob: 2d21ce8afb79ae6402959d63bd39ec9e4f4c0f94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  config,
  lib,
  pkgs,
  modulesPath,
  ...
}: {
  imports = [
    (modulesPath + "/installer/scan/not-detected.nix") # TODO is this necessary?
    ./cpu.nix
    ./gpu.nix
    ./boot.nix
    ./filesystems.nix
  ];

  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}