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 47eb485 commit 4a39585Copy full SHA for 4a39585
flake.nix
@@ -156,6 +156,7 @@
156
hp-elitebook-845g8 = import ./hp/elitebook/845/g8;
157
hp-elitebook-845g9 = import ./hp/elitebook/845/g9;
158
hp-probook-440G5 = import ./hp/probook/440G5;
159
+ hp-probook-460G11 = import ./hp/probook/460G11;
160
hp-laptop-14s-dq2024nf = import ./hp/laptop/14s-dq2024nf;
161
huawei-machc-wa = import ./huawei/machc-wa;
162
hp-notebook-14-df0023 = import ./hp/notebook/14-df0023;
hp/probook/460G11/default.nix
@@ -0,0 +1,14 @@
1
+{ config, lib, ... }:
2
+
3
+{
4
+ imports = [
5
+ ../../../common/cpu/intel/meteor-lake
6
+ ../../../common/pc
7
+ ../../../common/pc/laptop
8
+ ../../../common/pc/ssd
9
+ ];
10
11
+ config = {
12
+ services.thermald.enable = lib.mkDefault true;
13
+ };
14
+}
0 commit comments