Skip to content

Commit c401350

Browse files
bittnermergify[bot]
authored andcommitted
1 parent 2ea3ad8 commit c401350

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

dell/xps/13-9343/default.nix

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ lib, ... }:
1+
{ config, lib, ... }:
22

33
{
44
imports = [
@@ -7,6 +7,14 @@
77
../../../common/pc/ssd
88
];
99

10-
# This will save you money and possibly your life!
11-
services.thermald.enable = lib.mkDefault true;
10+
services = {
11+
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+
};
1220
}

0 commit comments

Comments
 (0)