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 d1bfa8f commit 563832bCopy full SHA for 563832b
flake.nix
@@ -153,6 +153,7 @@
153
hp-elitebook-845g8 = import ./hp/elitebook/845/g8;
154
hp-elitebook-845g9 = import ./hp/elitebook/845/g9;
155
hp-probook-440G5 = import ./hp/probook/440G5;
156
+ hp-probook-460G11 = import ./hp/probook/460G11;
157
hp-laptop-14s-dq2024nf = import ./hp/laptop/14s-dq2024nf;
158
huawei-machc-wa = import ./huawei/machc-wa;
159
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