-
-
Notifications
You must be signed in to change notification settings - Fork 903
Expand file tree
/
Copy pathdefault.nix
More file actions
37 lines (35 loc) · 629 Bytes
/
default.nix
File metadata and controls
37 lines (35 loc) · 629 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
config,
lib,
pkgs,
...
}:
{
imports = [
../.
../../../common/cpu/intel
../../../common/gpu/nvidia
../../../common/gpu/nvidia/kepler
../../../common/hidpi.nix
];
boot = {
initrd.kernelModules = [
"applesmc"
"applespi"
"intel_lpss_pci"
"spi_pxa2xx_platform"
"kvm-intel"
];
blacklistedKernelModules = [
"b43"
"ssb"
"brcmfmac"
"brcmsmac"
"bcma"
];
kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.0") pkgs.linuxPackages_latest;
};
hardware = {
bluetooth.enable = lib.mkDefault true;
};
}