27 lines
420 B
Nix
27 lines
420 B
Nix
{
|
|
config,
|
|
lib,
|
|
modulesPath,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkDefault mkMerge;
|
|
in
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
|
|
config = mkMerge [
|
|
{
|
|
hardware.cpu.intel.updateMicrocode = mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
hardware.bluetooth = {
|
|
settings = {
|
|
General.Experimental = true;
|
|
};
|
|
};
|
|
}
|
|
];
|
|
}
|