about summary refs log tree commit diff stats
path: root/hosts/IDOHVE/hardware/hardware.nix
blob: 20e4c4f351a9e132449c9d9cdf2cb3737d1e6796 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  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";
}