aboutsummaryrefslogtreecommitdiff
path: root/hosts/canadian-government-system/hardware-configuration.nix
blob: de637757de4207f7e6e9c236793828d3535bf058 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, lib, modulesPath, pkgs, ... }:
{
  imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
  boot.initrd.availableKernelModules = [
    "xhci_pci"
    "ahci"
    "usbhid"
    "sd_mod"
  ];

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