We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ea3ad8 commit c401350Copy full SHA for c401350
dell/xps/13-9343/default.nix
@@ -1,4 +1,4 @@
1
-{ lib, ... }:
+{ config, lib, ... }:
2
3
{
4
imports = [
@@ -7,6 +7,14 @@
7
../../../common/pc/ssd
8
];
9
10
- # This will save you money and possibly your life!
11
- services.thermald.enable = lib.mkDefault true;
+ services = {
+ fwupd.enable = lib.mkDefault true;
12
+ thermald.enable = lib.mkDefault true;
13
+ };
14
+
15
+ boot = {
16
+ # needs to be explicitly loaded or else bluetooth/wifi won't work
17
+ kernelModules = [ "wl" ];
18
+ extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
19
20
}
0 commit comments