Skip to content

Commit 5efc6e9

Browse files
authored
Merge pull request #1537 from LucasFA/init-nuc5i5RYB
init: NUC 5i5RYB
2 parents 2b75e96 + 9410081 commit 5efc6e9

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ See code for all available configurations.
223223
| [HP Probook 440G5](hp/probook/440g5) | `<nixos-hardware/hp/probook/440g5>` | `hp-probook-440G5` |
224224
| [Huawei Matebook X Pro (2020)](huawei/machc-wa) | `<nixos-hardware/huawei/machc-wa>` | `huawei-machc-wa` |
225225
| [i.MX8QuadMax Multisensory Enablement Kit](nxp/imx8qm-mek/) | `<nixos-hardware/nxp/imx8qm-mek>` | `nxp-imx8qm-mek` |
226+
| [Intel NUC 5i5RYB](intel/nuc/5i5ryb/) | `<nixos-hardware/intel/nuc/5i5ryb>` | `intel-nuc-5i5ryb` |
226227
| [Intel NUC 8i7BEH](intel/nuc/8i7beh/) | `<nixos-hardware/intel/nuc/8i7beh>` | `intel-nuc-8i7beh` |
227228
| [Lenovo IdeaCentre K330](lenovo/ideacentre/k330) | `<nixos-hardware/lenovo/ideacentre/k330>` | `lenovo-ideacentre-k330` |
228229
| [Lenovo IdeaPad 3 15alc6](lenovo/ideapad/15alc6) | `<nixos-hardware/lenovo/ideapad/15alc6>` | `lenovo-ideapad-15alc6` |

flake.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@
156156
hp-laptop-14s-dq2024nf = import ./hp/laptop/14s-dq2024nf;
157157
huawei-machc-wa = import ./huawei/machc-wa;
158158
hp-notebook-14-df0023 = import ./hp/notebook/14-df0023;
159+
intel-nuc-5i5ryb = import ./intel/nuc/5i5ryb;
159160
intel-nuc-8i7beh = import ./intel/nuc/8i7beh;
160161
lenovo-ideacentre-k330 = import ./lenovo/ideacentre/k330;
161162
lenovo-ideapad-14imh9 = import ./lenovo/ideapad/14imh9;

intel/nuc/5i5ryb/default.nix

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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+
}

0 commit comments

Comments
 (0)