File tree Expand file tree Collapse file tree 6 files changed +21
-3
lines changed Expand file tree Collapse file tree 6 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -224,6 +224,7 @@ See code for all available configurations.
224
224
| [ HP Probook 460G11] ( hp/probook/460g11 ) | ` <nixos-hardware/hp/probook/460g11> ` | ` hp-probook-46011 ` |
225
225
| [ Huawei Matebook X Pro (2020)] ( huawei/machc-wa ) | ` <nixos-hardware/huawei/machc-wa> ` | ` huawei-machc-wa ` |
226
226
| [ i.MX8QuadMax Multisensory Enablement Kit] ( nxp/imx8qm-mek/ ) | ` <nixos-hardware/nxp/imx8qm-mek> ` | ` nxp-imx8qm-mek ` |
227
+ | [ Intel NUC 5i5RYB] ( intel/nuc/5i5ryb/ ) | ` <nixos-hardware/intel/nuc/5i5ryb> ` | ` intel-nuc-5i5ryb ` |
227
228
| [ Intel NUC 8i7BEH] ( intel/nuc/8i7beh/ ) | ` <nixos-hardware/intel/nuc/8i7beh> ` | ` intel-nuc-8i7beh ` |
228
229
| [ Lenovo IdeaCentre K330] ( lenovo/ideacentre/k330 ) | ` <nixos-hardware/lenovo/ideacentre/k330> ` | ` lenovo-ideacentre-k330 ` |
229
230
| [ Lenovo IdeaPad 3 15alc6] ( lenovo/ideapad/15alc6 ) | ` <nixos-hardware/lenovo/ideapad/15alc6> ` | ` lenovo-ideapad-15alc6 ` |
Original file line number Diff line number Diff line change 6
6
} :
7
7
let
8
8
p = pkgs . writeScriptBin "charge-upto" ''
9
- echo '' ${0:-100} > /sys/class/power_supply/BAT?/charge_control_end_threshold
9
+ #!${ pkgs . bash } /bin/bash
10
+ echo '' ${1:-100} > /sys/class/power_supply/BAT?/charge_control_end_threshold
10
11
'' ;
11
12
cfg = config . hardware . asus . battery ;
12
13
in
Original file line number Diff line number Diff line change 157
157
hp-laptop-14s-dq2024nf = import ./hp/laptop/14s-dq2024nf ;
158
158
huawei-machc-wa = import ./huawei/machc-wa ;
159
159
hp-notebook-14-df0023 = import ./hp/notebook/14-df0023 ;
160
+ intel-nuc-5i5ryb = import ./intel/nuc/5i5ryb ;
160
161
intel-nuc-8i7beh = import ./intel/nuc/8i7beh ;
161
162
lenovo-ideacentre-k330 = import ./lenovo/ideacentre/k330 ;
162
163
lenovo-ideapad-14imh9 = import ./lenovo/ideapad/14imh9 ;
Original file line number Diff line number Diff line change
1
+ { lib , ... } :
2
+
3
+ {
4
+ imports = [
5
+ ../../../common/cpu/intel/broadwell
6
+ ../../../common/pc
7
+ ../../../common/pc/ssd
8
+ ] ;
9
+
10
+ services . thermald . enable = lib . mkDefault true ;
11
+ }
Original file line number Diff line number Diff line change 26
26
# See https://wiki.archlinux.org/title/Dell_XPS_16_(9640)#Random_freezes
27
27
"iommu.strict=1"
28
28
"iommu.passthrough=1"
29
+
30
+ # Workaround: i915 0000:00:02.0: [drm] *ERROR* [CRTC:82:pipe A] flip_done timed out
31
+ # See https://github.com/pop-os/pop/issues/3130
32
+ "i915.dmc_firmware_path=\" \" "
29
33
] ;
30
34
} ;
31
35
Original file line number Diff line number Diff line change 19
19
if kernelVersion == "longterm" then
20
20
"6.12.19"
21
21
else if kernelVersion == "stable" then
22
- "6.15.3 "
22
+ "6.15.6 "
23
23
else
24
24
abort "Invalid kernel version: ${ kernelVersion } " ;
25
25
28
28
if kernelVersion == "longterm" then
29
29
"sha256-1zvwV77ARDSxadG2FkGTb30Ml865I6KB8y413U3MZTE="
30
30
else if kernelVersion == "stable" then
31
- "sha256-ErUMiZJUONnNc4WgyvycQz5lYqxd8AohiJ/On1SNZbA ="
31
+ "sha256-K7WGyVQnfQcMj99tcnX6qTtIB9m/M1O0kdgUnMoCtPw ="
32
32
else
33
33
abort "Invalid kernel version: ${ kernelVersion } " ;
34
34
You can’t perform that action at this time.
0 commit comments