11 lines
317 B
Nix
11 lines
317 B
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
<nixos-hardware/framework/13-inch/11th-gen-intel>
|
|
];
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ];
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
} |