{"id":24247511,"url":"https://github.com/shymega/nixos-hardware","last_synced_at":"2025-03-04T16:24:15.471Z","repository":{"id":185412148,"uuid":"673512286","full_name":"shymega/nixos-hardware","owner":"shymega","description":"A collection of NixOS modules covering hardware quirks.","archived":false,"fork":false,"pushed_at":"2025-02-19T14:05:16.000Z","size":2148,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-01T06:41:53.328Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Nix","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"NixOS/nixos-hardware","license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shymega.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null}},"created_at":"2023-08-01T19:52:06.000Z","updated_at":"2025-02-19T14:05:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"602ad46a-6854-4ec0-8f4e-76414ef8c0d1","html_url":"https://github.com/shymega/nixos-hardware","commit_stats":null,"previous_names":["shymega/nixos-hardware"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shymega%2Fnixos-hardware","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shymega%2Fnixos-hardware/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shymega%2Fnixos-hardware/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shymega%2Fnixos-hardware/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shymega","download_url":"https://codeload.github.com/shymega/nixos-hardware/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241878356,"owners_count":20035608,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-14T23:54:20.983Z","updated_at":"2025-03-04T16:24:15.463Z","avatar_url":"https://github.com/shymega.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"NixOS profiles to optimize settings for different hardware.\n\n## Setup\n\n### Using channels\n\nAdd and update `nixos-hardware` channel:\n\n```\n$ sudo nix-channel --add https://github.com/NixOS/nixos-hardware/archive/master.tar.gz nixos-hardware\n$ sudo nix-channel --update\n```\n\nThen import an appropriate profile path from the table below. For example, to\nenable ThinkPad X220 profile, your `imports` in `/etc/nixos/configuration.nix`\nshould look like:\n\n```\nimports = [\n  \u003cnixos-hardware/lenovo/thinkpad/x220\u003e\n  ./hardware-configuration.nix\n];\n```\n\nNew updates to the expressions here will be fetched when you update the channel.\n\n### Using nix flakes support\n\nThere is also experimental flake support. In your `/etc/nixos/flake.nix` add\nthe following:\n\n```nix\n{\n  description = \"NixOS configuration with flakes\";\n  inputs.nixos-hardware.url = \"github:NixOS/nixos-hardware/master\";\n\n  outputs = { self, nixpkgs, nixos-hardware }: {\n    # replace \u003cyour-hostname\u003e with your actual hostname\n    nixosConfigurations.\u003cyour-hostname\u003e = nixpkgs.lib.nixosSystem {\n      # ...\n      modules = [\n        # ...\n        # add your model from this list: https://github.com/NixOS/nixos-hardware/blob/master/flake.nix\n        nixos-hardware.nixosModules.dell-xps-13-9380\n      ];\n    };\n  };\n}\n```\n\n### Using fetchGit\n\nYou can fetch the git repository directly:\n\n```nix\nimports = [\n  \"${builtins.fetchGit { url = \"https://github.com/NixOS/nixos-hardware.git\"; }}/lenovo/thinkpad/x220\"\n];\n```\n\nUnlike the channel, this will update the git repository on a rebuild. However,\nyou can easily pin to a particular revision if you desire more stability.\n\n## How to contribute a new device profile\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md).\n\n## Get in touch\n\nFor questions and discussions, come join us in the [nixos-anywhere matrix](https://matrix.to/#/#nixos-hardware:nixos.org) room.\n\n## List of Profiles\n\nSee code for all available configurations.\n\n| Model                                                                             | Path                                                    |\n| --------------------------------------------------------------------------------- | ------------------------------------------------------- |\n| [Acer Aspire 4810T](acer/aspire/4810t)                                            | `\u003cnixos-hardware/acer/aspire/4810t\u003e`                    |\n| [Airis N990](airis/n990)                                                          | `\u003cnixos-hardware/airis/n990\u003e`                           |\n| [Apple iMac 14.2](apple/imac/14-2)                                                | `\u003cnixos-hardware/apple/imac/14-2\u003e`                      |\n| [Apple iMac 18.2](apple/imac/18-2)                                                | `\u003cnixos-hardware/apple/imac/18-2\u003e`                      |\n| [Apple MacBook Air 3,X](apple/macbook-air/3)                                      | `\u003cnixos-hardware/apple/macbook-air/3\u003e`                  |\n| [Apple MacBook Air 4,X](apple/macbook-air/4)                                      | `\u003cnixos-hardware/apple/macbook-air/4\u003e`                  |\n| [Apple MacBook Air 6,X](apple/macbook-air/6)                                      | `\u003cnixos-hardware/apple/macbook-air/6\u003e`                  |\n| [Apple MacBook Air 7,X](apple/macbook-air/7)                                      | `\u003cnixos-hardware/apple/macbook-air/7\u003e`                  |\n| [Apple MacBook Pro 8,1](apple/macbook-pro/8-1)                                    | `\u003cnixos-hardware/apple/macbook-pro/8-1\u003e`                |\n| [Apple MacBook Pro 10,1](apple/macbook-pro/10-1)                                  | `\u003cnixos-hardware/apple/macbook-pro/10-1\u003e`               |\n| [Apple MacBook Pro 11,1](apple/macbook-pro/11-1)                                  | `\u003cnixos-hardware/apple/macbook-pro/11-1\u003e`               |\n| [Apple MacBook Pro 11,5](apple/macbook-pro/11-5)                                  | `\u003cnixos-hardware/apple/macbook-pro/11-5\u003e`               |\n| [Apple MacBook Pro 12,1](apple/macbook-pro/12-1)                                  | `\u003cnixos-hardware/apple/macbook-pro/12-1\u003e`               |\n| [Apple MacBook Pro 14,1](apple/macbook-pro/14-1)                                  | `\u003cnixos-hardware/apple/macbook-pro/14-1\u003e`               |\n| [Apple MacMini (2010, Intel, Nvidia)](apple/macmini/4)                            | `\u003cnixos-hardware/apple/macmini/4\u003e`                      |\n| [Apple Macs with a T2 Chip](apple/t2)                                             | `\u003cnixos-hardware/apple/t2\u003e`                             |\n| [Asus Pro WS X570-ACE](asus/pro-ws-x570-ace)                                      | `\u003cnixos-hardware/asus/pro-ws-x570-ace\u003e`                 |\n| [Asus ROG Ally RC71L (2023)](asus/ally/rc71l)                                     | `\u003cnixos-hardware/asus/ally/rc71l\u003e`                      |\n| [Asus ROG Flow X13 GV302X\\* (2023)](asus/flow/gv302x/amdgpu)                      | `\u003cnixos-hardware/asus/flow/gv302x/amdgpu\u003e`              |\n| [Asus ROG Flow X13 GV302X\\* (2023)](asus/flow/gv302x/nvidia)                      | `\u003cnixos-hardware/asus/flow/gv302x/nvidia\u003e`              |\n| [Asus ROG Strix G513IM](asus/rog-strix/g513im)                                    | `\u003cnixos-hardware/asus/rog-strix/g513im\u003e`                |\n| [Asus ROG Strix G713IE](asus/rog-strix/g713ie)                                    | `\u003cnixos-hardware/asus/rog-strix/g713ie\u003e`                |\n| [Asus ROG Strix G733QS](asus/rog-strix/g733qs)                                    | `\u003cnixos-hardware/asus/rog-strix/g733qs\u003e`                |\n| [Asus ROG Strix X570-E GAMING](asus/rog-strix/x570e)                              | `\u003cnixos-hardware/asus/rog-strix/x570e\u003e`                 |\n| [Asus ROG Zephyrus G14 GA401](asus/zephyrus/ga401)                                | `\u003cnixos-hardware/asus/zephyrus/ga401\u003e`                  |\n| [Asus ROG Zephyrus G14 GA402](asus/zephyrus/ga402)                                | `\u003cnixos-hardware/asus/zephyrus/ga402\u003e`                  |\n| [Asus ROG Zephyrus G14 GA402X\\* (2023)](asus/zephyrus/ga402x/amdgpu)              | `\u003cnixos-hardware/asus/zephyrus/ga402x/amdgpu\u003e`          |\n| [Asus ROG Zephyrus G14 GA402X\\* (2023)](asus/zephyrus/ga402x/nvidia)              | `\u003cnixos-hardware/asus/zephyrus/ga402x/nvidia\u003e`          |\n| [Asus ROG Zephyrus G15 GA502](asus/zephyrus/ga502)                                | `\u003cnixos-hardware/asus/zephyrus/ga502\u003e`                  |\n| [Asus ROG Zephyrus G15 GA503](asus/zephyrus/ga503)                                | `\u003cnixos-hardware/asus/zephyrus/ga503\u003e`                  |\n| [Asus ROG Zephyrus G16 GU605MY](asus/zephyrus/gu605my)                            | `\u003cnixos-hardware/asus/zephyrus/gu605my\u003e`                |\n| [Asus ROG Zephyrus M16 GU603H](asus/zephyrus/gu603h)                              | `\u003cnixos-hardware/asus/zephyrus/gu603h\u003e`                 |\n| [Asus TUF FX504GD](asus/fx504gd)                                                  | `\u003cnixos-hardware/asus/fx504gd\u003e`                         |\n| [Asus TUF FX506HM](asus/fx506hm)                                                  | `\u003cnixos-hardware/asus/fx506hm\u003e`                         |\n| [Asus TUF FA506IC](asus/fa506ic)                                                  | `\u003cnixos-hardware/asus/fa506ic\u003e`                         |\n| [Asus TUF FA507RM](asus/fa507rm)                                                  | `\u003cnixos-hardware/asus/fa507rm\u003e`                         |\n| [Asus TUF FA507NV](asus/fa507nv)                                                  | `\u003cnixos-hardware/asus/fa507nv\u003e`                         |\n| [Asus Zenbook Flip S13 UX371](asus/zenbook/ux371/)                                | `\u003cnixos-hardware/asus/zenbook/ux371\u003e`                   |\n| [Asus Zenbook Pro 15 UX535](asus/zenbook/ux535/)                                  | `\u003cnixos-hardware/asus/zenbook/ux535\u003e`                   |\n| [BeagleBoard PocketBeagle](beagleboard/pocketbeagle)                              | `\u003cnixos-hardware/beagleboard/pocketbeagle\u003e`             |\n| [Chuwi MiniBook X](chuwi/minibook-x)                                              | `\u003cnixos-hardware/chuwi/minibook-x\u003e`                     |\n| [Deciso DEC series](deciso/dec)                                                   | `\u003cnixos-hardware/deciso/dec\u003e`                           |\n| [Dell G3 3779](dell/g3/3779)                                                      | `\u003cnixos-hardware/dell/g3/3779\u003e`                         |\n| [Dell G3 3579](dell/g3/3579)                                                      | `\u003cnixos-hardware/dell/g3/3579\u003e`                         |\n| [Dell Inspiron 3442](dell/inspiron/3442)                                       | `\u003cnixos-hardawre/dell/inspiron/3442\u003e`                |\n| [Dell Inspiron 14 5420](dell/inspiron/14-5420)                                    | `\u003cnixos-hardawre/dell/inspiron/14-5420\u003e`                |\n| [Dell Inspiron 5509](dell/inspiron/5509)                                          | `\u003cnixos-hardware/dell/inspiron/5509\u003e`                   |\n| [Dell Inspiron 5515](dell/inspiron/5515)                                          | `\u003cnixos-hardware/dell/inspiron/5515\u003e`                   |\n| [Dell Inspiron 7405](dell/inspiron/7405)                                          | `\u003cnixos-hardware/dell/inspiron/7405\u003e`                   |\n| [Dell Inspiron 7460](dell/inspiron/7460)                                          | `\u003cnixos-hardware/dell/inspiron/7460\u003e`                   |\n| [Dell Latitude 3340](dell/latitude/3340)                                          | `\u003cnixos-hardware/dell/latitude/3340\u003e`                   |\n| [Dell Latitude 3480](dell/latitude/3480)                                          | `\u003cnixos-hardware/dell/latitude/3480\u003e`                   |\n| [Dell Latitude 5490](dell/latitude/5490)                                          | `\u003cnixos-hardware/dell/latitude/5490\u003e`                   |\n| [Dell Latitude 5520](dell/latitude/5520)                                          | `\u003cnixos-hardware/dell/latitude/5520\u003e`                   |\n| [Dell Latitude 7280](dell/latitude/7280)                                          | `\u003cnixos-hardware/dell/latitude/7280\u003e`                   |\n| [Dell Latitude 7390](dell/latitude/7390)                                          | `\u003cnixos-hardware/dell/latitude/7390\u003e`                   |\n| [Dell Latitude 7420](dell/latitude/7420)                                          | `\u003cnixos-hardware/dell/latitude/7420\u003e`                   |\n| [Dell Latitude 7430](dell/latitude/7430)                                          | `\u003cnixos-hardware/dell/latitude/7430\u003e`                   |\n| [Dell Latitude 7490](dell/latitude/7490)                                          | `\u003cnixos-hardware/dell/latitude/7490\u003e`                   |\n| [Dell Latitude 9430](dell/latitude/9430)                                          | `\u003cnixos-hardware/dell/latitude/9430\u003e`                   |\n| [Dell Optiplex 3050](dell/optiplex/3050)                                          | `\u003cnixos-hardware/dell/optiplex/3050\u003e`                   |\n| [Dell Poweredge R7515](dell/poweredge/r7515)                                      | `\u003cnixos-hardware/dell/poweredge/r7515\u003e`                 |\n| [Dell Precision 3541](dell/precision/3541)                                        | `\u003cnixos-hardware/dell/precision/3541\u003e`                  |\n| [Dell Precision 5490](dell/precision/5490)                                        | `\u003cnixos-hardware/dell/precision/5490\u003e`                  |\n| [Dell Precision 5530](dell/precision/5530)                                        | `\u003cnixos-hardware/dell/precision/5530\u003e`                  |\n| [Dell Precision 7520](dell/precision/7520)                                        | `\u003cnixos-hardware/dell/precision/7520\u003e`                  |\n| [Dell XPS 13 7390](dell/xps/13-7390)                                              | `\u003cnixos-hardware/dell/xps/13-7390\u003e`                     |\n| [Dell XPS 13 9300](dell/xps/13-9300)                                              | `\u003cnixos-hardware/dell/xps/13-9300\u003e`                     |\n| [Dell XPS 13 9310](dell/xps/13-9310)                                              | `\u003cnixos-hardware/dell/xps/13-9310\u003e`                     |\n| [Dell XPS 13 9315](dell/xps/13-9315)                                              | `\u003cnixos-hardware/dell/xps/13-9315\u003e`                     |\n| [Dell XPS 13 9333](dell/xps/13-9333)                                              | `\u003cnixos-hardware/dell/xps/13-9333\u003e`                     |\n| [Dell XPS 13 9343](dell/xps/13-9343)                                              | `\u003cnixos-hardware/dell/xps/13-9343\u003e`                     |\n| [Dell XPS 13 9350](dell/xps/13-9350)                                              | `\u003cnixos-hardware/dell/xps/13-9350\u003e`                     |\n| [Dell XPS 13 9360](dell/xps/13-9360)                                              | `\u003cnixos-hardware/dell/xps/13-9360\u003e`                     |\n| [Dell XPS 13 9370](dell/xps/13-9370)                                              | `\u003cnixos-hardware/dell/xps/13-9370\u003e`                     |\n| [Dell XPS 13 9380](dell/xps/13-9380)                                              | `\u003cnixos-hardware/dell/xps/13-9380\u003e`                     |\n| [Dell XPS 15 7590, nvidia](dell/xps/15-7590/nvidia)                               | `\u003cnixos-hardware/dell/xps/15-7590/nvidia\u003e`              |\n| [Dell XPS 15 7590](dell/xps/15-7590)                                              | `\u003cnixos-hardware/dell/xps/15-7590\u003e`                     |\n| [Dell XPS 15 9500, nvidia](dell/xps/15-9500/nvidia)                               | `\u003cnixos-hardware/dell/xps/15-9500/nvidia\u003e`              |\n| [Dell XPS 15 9500](dell/xps/15-9500)                                              | `\u003cnixos-hardware/dell/xps/15-9500\u003e`                     |\n| [Dell XPS 15 9510, nvidia](dell/xps/15-9510/nvidia)                               | `\u003cnixos-hardware/dell/xps/15-9510/nvidia\u003e`              |\n| [Dell XPS 15 9510](dell/xps/15-9510)                                              | `\u003cnixos-hardware/dell/xps/15-9510\u003e`                     |\n| [Dell XPS 15 9520, nvidia](dell/xps/15-9520/nvidia)                               | `\u003cnixos-hardware/dell/xps/15-9520/nvidia\u003e`              |\n| [Dell XPS 15 9520](dell/xps/15-9520)                                              | `\u003cnixos-hardware/dell/xps/15-9520\u003e`                     |\n| [Dell XPS 15 9530, nvidia](dell/xps/15-9520/nvidia)                               | `\u003cnixos-hardware/dell/xps/15-9530/nvidia\u003e`              |\n| [Dell XPS 15 9420](dell/xps/15-9520)                                              | `\u003cnixos-hardware/dell/xps/15-9530\u003e`                     |\n| [Dell XPS 15 9550, nvidia](dell/xps/15-9550/nvidia)                               | `\u003cnixos-hardware/dell/xps/15-9550/nvidia\u003e`              |\n| [Dell XPS 15 9550](dell/xps/15-9550)                                              | `\u003cnixos-hardware/dell/xps/15-9550\u003e`                     |\n| [Dell XPS 15 9560, intel only](dell/xps/15-9560/intel)                            | `\u003cnixos-hardware/dell/xps/15-9560/intel\u003e`               |\n| [Dell XPS 15 9560, nvidia only](dell/xps/15-9560/nvidia)                          | `\u003cnixos-hardware/dell/xps/15-9560/nvidia\u003e`              |\n| [Dell XPS 15 9560](dell/xps/15-9560)                                              | `\u003cnixos-hardware/dell/xps/15-9560\u003e`                     |\n| [Dell XPS 15 9570, intel only](dell/xps/15-9570/intel)                            | `\u003cnixos-hardware/dell/xps/15-9570/intel\u003e`               |\n| [Dell XPS 15 9570, nvidia](dell/xps/15-9570/nvidia)                               | `\u003cnixos-hardware/dell/xps/15-9570/nvidia\u003e`              |\n| [Dell XPS 15 9570](dell/xps/15-9570)                                              | `\u003cnixos-hardware/dell/xps/15-9570\u003e`                     |\n| [Dell XPS 17 9700, intel](dell/xps/17-9700/intel)                                 | `\u003cnixos-hardware/dell/xps/17-9700/intel`                |\n| [Dell XPS 17 9700, nvidia](dell/xps/17-9700/nvidia)                               | `\u003cnixos-hardware/dell/xps/17-9700/nvidia\u003e`              |\n| [Dell XPS 17 9710, intel only](dell/xps/17-9710/intel)                            | `\u003cnixos-hardware/dell/xps/17-9710/intel\u003e`               |\n| [Dell XPS E7240](dell/e7240)                                                      | `\u003cnixos-hardware/dell/e7240\u003e`                           |\n| [Framework 11th Gen Intel Core](framework/13-inch/11th-gen-intel)                 | `\u003cnixos-hardware/framework/13-inch/11th-gen-intel\u003e`     |\n| [Framework 12th Gen Intel Core](framework/13-inch/12th-gen-intel)                 | `\u003cnixos-hardware/framework/13-inch/12th-gen-intel\u003e`     |\n| [Framework 13th Gen Intel Core](framework/13-inch/13th-gen-intel)                 | `\u003cnixos-hardware/framework/13-inch/13th-gen-intel\u003e`     |\n| [Framework Intel Core Ultra Series 1](framework/13-inch/intel-core-ultra-series1) | `\u003cnixos-hardware/framework/13-inch/intel-core-ultra-series1\u003e`     |\n| [Framework 13 AMD Ryzen 7040 Series](framework/13-inch/7040-amd)                  | `\u003cnixos-hardware/framework/13-inch/7040-amd\u003e`           |\n| [Framework 16 AMD Ryzen 7040 Series](framework/16-inch/7040-amd)                  | `\u003cnixos-hardware/framework/16-inch/7040-amd\u003e`           |\n| [FriendlyARM NanoPC-T4](friendlyarm/nanopc-t4)                                    | `\u003cnixos-hardware/friendlyarm/nanopc-t4\u003e`                |\n| [FriendlyARM NanoPi R5s](friendlyarm/nanopi-r5s)                                  | `\u003cnixos-hardware/friendlyarm/nanopi-r5s\u003e`               |\n| [Focus M2 Gen 1](focus/m2/gen1)                                                   | `\u003cnixos-hardware/focus/m2/gen1\u003e`                        |\n| [Gigabyte B550](gigabyte/b550)                                                    | `\u003cnixos-hardware/gigabyte/b550\u003e`                        |\n| [GPD MicroPC](gpd/micropc)                                                        | `\u003cnixos-hardware/gpd/micropc\u003e`                          |\n| [GPD P2 Max](gpd/p2-max)                                                          | `\u003cnixos-hardware/gpd/p2-max\u003e`                           |\n| [GPD Pocket 3](gpd/pocket-3)                                                      | `\u003cnixos-hardware/gpd/pocket-3\u003e`                         |\n| [GPD Pocket 4](gpd/pocket-4)                                                      | `\u003cnixos-hardware/gpd/pocket-4\u003e`                         |\n| [GPD WIN 2](gpd/win-2)                                                            | `\u003cnixos-hardware/gpd/win-2\u003e`                            |\n| [GPD WIN Max 2 2023](gpd/win-max-2/2023)                                          | `\u003cnixos-hardware/gpd/win-max-2/2023\u003e`                   |\n| [GPD WIN Mini 2024](gpd/win-mini/2024)                                            | `\u003cnixos-hardware/gpd/win-mini/2024\u003e`                    |\n| [Google Pixelbook](google/pixelbook)                                              | `\u003cnixos-hardware/google/pixelbook\u003e`                     |\n| [HP Elitebook 2560p](hp/elitebook/2560p)                                          | `\u003cnixos-hardware/hp/elitebook/2560p\u003e`                   |\n| [HP Elitebook 830g6](hp/elitebook/830/g6)                                         | `\u003cnixos-hardware/hp/elitebook/830/g6\u003e`                  |\n| [HP Elitebook 845g7](hp/elitebook/845/g7)                                         | `\u003cnixos-hardware/hp/elitebook/845/g7\u003e`                  |\n| [HP Elitebook 845g8](hp/elitebook/845/g8)                                         | `\u003cnixos-hardware/hp/elitebook/845/g8\u003e`                  |\n| [HP Elitebook 845g9](hp/elitebook/845/g9)                                         | `\u003cnixos-hardware/hp/elitebook/845/g9\u003e`                  |\n| [HP Laptop 14s-dq2024nf](hp/laptop/14s-dq2024nf)                                  | `\u003cnixos-hardware/hp/laptop/14s-dq2024nf\u003e`               |\n| [HP Notebook 14-df0023](hp/notebook/14-df0023)                                    | `\u003cnixos-hardware/hp/notebook/14-df0023\u003e`                |\n| [HP Probook 440G5](hp/probook/440g5)                                              | `\u003cnixos-hardware/hp/probook/440g5\u003e`                     |\n| [Huawei Matebook X Pro (2020)](huawei/machc-wa)                                   | `\u003cnixos-hardware/huawei/machc-wa\u003e`                      |\n| [i.MX8QuadMax Multisensory Enablement Kit](nxp/imx8qm-mek/)                       | `\u003cnixos-hardware/nxp/imx8qm-mek\u003e`                       |\n| [Intel NUC 8i7BEH](intel/nuc/8i7beh/)                                             | `\u003cnixos-hardware/intel/nuc/8i7beh\u003e`                     |\n| [Lenovo IdeaCentre K330](lenovo/ideacentre/k330)                                  | `\u003cnixos-hardware/lenovo/ideacentre/k330\u003e`               |\n| [Lenovo IdeaPad 3 15alc6](lenovo/ideapad/15alc6)                                  | `\u003cnixos-hardware/lenovo/ideapad/15alc6\u003e`                |\n| [Lenovo IdeaPad Gaming 3 15arh05](lenovo/ideapad/15arh05)                         | `\u003cnixos-hardware/lenovo/ideapad/15arh05\u003e`               |\n| [Lenovo IdeaPad Gaming 3 15ach6](lenovo/ideapad/15ach6)                           | `\u003cnixos-hardware/lenovo/ideapad/15ach6\u003e`                |\n| [Lenovo IdeaPad 5 Pro 16ach6](lenovo/ideapad/16ach6)                              | `\u003cnixos-hardware/lenovo/ideapad/16ach6\u003e`                |\n| [Lenovo IdeaPad Z510](lenovo/ideapad/z510)                                        | `\u003cnixos-hardware/lenovo/ideapad/z510\u003e`                  |\n| [Lenovo IdeaPad Slim 5](lenovo/ideapad/slim-5)                                    | `\u003cnixos-hardware/lenovo/ideapad/slim-5\u003e`                |\n| [Lenovo IdeaPad Slim 5 16iah8](lenovo/ideapad/16iah8)                             | `\u003cnixos-hardware/lenovo/ideapad/16iah8`                 |\n| [Lenovo IdeaPad 2-in-1 16ahp9](lenovo/ideapad/16ahp09)                            | `\u003cnixos-hardware/lenovo/ideapad/16ahp9`                 |\n| [Lenovo IdeaPad S145 15api](lenovo/ideapad/s145-15api)                            | `\u003cnixos-hardware/lenovo/ideapad/s145-15api\u003e`            |\n| [Lenovo Legion 5 15ach6h](lenovo/legion/15ach6h)                                  | `\u003cnixos-hardware/lenovo/legion/15ach6h\u003e`                |\n| [Lenovo Legion 5 15arh05h](lenovo/legion/15arh05h)                                | `\u003cnixos-hardware/lenovo/legion/15arh05h\u003e`               |\n| [Lenovo Legion 7 Slim 15ach6](lenovo/legion/15ach6)                               | `\u003cnixos-hardware/lenovo/legion/15ach6\u003e`                 |\n| [Lenovo Legion 5 Pro 16ach6h](lenovo/legion/16ach6h)                              | `\u003cnixos-hardware/lenovo/legion/16ach6h\u003e`                |\n| [Lenovo Legion 5 Pro 16ach6h (Hybrid)](lenovo/legion/16ach6h/hybrid)              | `\u003cnixos-hardware/lenovo/legion/16ach6h/hybrid\u003e`         |\n| [Lenovo Legion 5 Pro 16ach6h (Nvidia)](lenovo/legion/16ach6h/nvidia)              | `\u003cnixos-hardware/lenovo/legion/16ach6h/nvidia\u003e`         |\n| [Lenovo Legion 7 16achg6 (Hybrid)](lenovo/legion/16achg6/hybrid)                  | `\u003cnixos-hardware/lenovo/legion/16achg6/hybrid\u003e`         |\n| [Lenovo Legion 7 16achg6 (Nvidia)](lenovo/legion/16achg6/nvidia)                  | `\u003cnixos-hardware/lenovo/legion/16achg6/nvidia\u003e`         |\n| [Lenovo Legion 7i Pro 16irx8h (Intel)](lenovo/legion/16irx8h)                     | `\u003cnixos-hardware/lenovo/legion/16irx8h\u003e`                |\n| [Lenovo Legion 7 Pro 16irx9h (Intel)](lenovo/legion/16irx9h)                      | `\u003cnixos-hardware/lenovo/legion/16irx9h\u003e`                |\n| [Lenovo Legion Slim 7 Gen 7 (AMD)](lenovo/legion/16arha7/)                        | `\u003cnixos-hardware/lenovo/legion/16arha7\u003e`                |\n| [Lenovo Legion T5 AMR5](lenovo/legion/t526amr5)                                   | `\u003cnixos-hardware/lenovo/legion/t526amr5\u003e`               |\n| [Lenovo Legion Y530 15ICH](lenovo/legion/15ich)                                   | `\u003cnixos-hardware/lenovo/legion/15ich\u003e`                  |\n| [Lenovo ThinkPad A475](lenovo/thinkpad/a475)                                      | `\u003cnixos-hardware/lenovo/thinkpad/a475\u003e`                 |\n| [Lenovo ThinkPad E14 (AMD)](lenovo/thinkpad/e14/amd)                              | `\u003cnixos-hardware/lenovo/thinkpad/e14/amd\u003e`              |\n| [Lenovo ThinkPad E14 (Intel)](lenovo/thinkpad/e14/intel)                          | `\u003cnixos-hardware/lenovo/thinkpad/e14/intel\u003e`            |\n| [Lenovo ThinkPad E470](lenovo/thinkpad/e470)                                      | `\u003cnixos-hardware/lenovo/thinkpad/e470\u003e`                 |\n| [Lenovo ThinkPad E495](lenovo/thinkpad/e495)                                      | `\u003cnixos-hardware/lenovo/thinkpad/e495\u003e`                 |\n| [Lenovo ThinkPad L13 Yoga](lenovo/thinkpad/l13/yoga)                              | `\u003cnixos-hardware/lenovo/thinkpad/l13/yoga\u003e`             |\n| [Lenovo ThinkPad L13](lenovo/thinkpad/l13)                                        | `\u003cnixos-hardware/lenovo/thinkpad/l13\u003e`                  |\n| [Lenovo ThinkPad L14 (AMD)](lenovo/thinkpad/l14/amd)                              | `\u003cnixos-hardware/lenovo/thinkpad/l14/amd\u003e`              |\n| [Lenovo ThinkPad L14 (Intel)](lenovo/thinkpad/l14/intel)                          | `\u003cnixos-hardware/lenovo/thinkpad/l14/intel\u003e`            |\n| [Lenovo ThinkPad L480](lenovo/thinkpad/l480)                                      | `\u003cnixos-hardware/lenovo/thinkpad/l480\u003e`                 |\n| [Lenovo ThinkPad P1 Gen 3](lenovo/thinkpad/p1/3th-gen)                            | `\u003cnixos-hardware/lenovo/thinkpad/p1/3th-gen\u003e`           |\n| [Lenovo ThinkPad P14s AMD Gen 1](lenovo/thinkpad/p14s/amd/gen1)                   | `\u003cnixos-hardware/lenovo/thinkpad/p14s/amd/gen1\u003e`        |\n| [Lenovo ThinkPad P14s AMD Gen 2](lenovo/thinkpad/p14s/amd/gen2)                   | `\u003cnixos-hardware/lenovo/thinkpad/p14s/amd/gen2\u003e`        |\n| [Lenovo ThinkPad P14s AMD Gen 3](lenovo/thinkpad/p14s/amd/gen3)                   | `\u003cnixos-hardware/lenovo/thinkpad/p14s/amd/gen3\u003e`        |\n| [Lenovo ThinkPad P14s AMD Gen 4](lenovo/thinkpad/p14s/amd/gen4)                   | `\u003cnixos-hardware/lenovo/thinkpad/p14s/amd/gen4\u003e`        |\n| [Lenovo ThinkPad P14s Intel Gen 3](lenovo/thinkpad/p14s/intel/gen3)               | `\u003cnixos-hardware/lenovo/thinkpad/p14s/intel/gen3\u003e`      |\n| [Lenovo ThinkPad P16s AMD Gen 1](lenovo/thinkpad/p16s/amd/gen1)                   | `\u003cnixos-hardware/lenovo/thinkpad/p16s/amd/gen1\u003e`        |\n| [Lenovo ThinkPad P1](lenovo/thinkpad/p1)                                          | `\u003cnixos-hardware/lenovo/thinkpad/p1\u003e`                   |\n| [Lenovo ThinkPad P50](lenovo/thinkpad/p50)                                        | `\u003cnixos-hardware/lenovo/thinkpad/p50\u003e`                  |\n| [Lenovo ThinkPad P51](lenovo/thinkpad/p51)                                        | `\u003cnixos-hardware/lenovo/thinkpad/p51\u003e`                  |\n| [Lenovo ThinkPad P52](lenovo/thinkpad/p52)                                        | `\u003cnixos-hardware/lenovo/thinkpad/p52\u003e`                  |\n| [Lenovo ThinkPad P53](lenovo/thinkpad/p53)                                        | `\u003cnixos-hardware/lenovo/thinkpad/p53\u003e`                  |\n| [Lenovo ThinkPad T14 AMD Gen 1](lenovo/thinkpad/t14/amd/gen1)                     | `\u003cnixos-hardware/lenovo/thinkpad/t14/amd/gen1\u003e`         |\n| [Lenovo ThinkPad T14 AMD Gen 2](lenovo/thinkpad/t14/amd/gen2)                     | `\u003cnixos-hardware/lenovo/thinkpad/t14/amd/gen2\u003e`         |\n| [Lenovo ThinkPad T14 AMD Gen 3](lenovo/thinkpad/t14/amd/gen3)                     | `\u003cnixos-hardware/lenovo/thinkpad/t14/amd/gen3\u003e`         |\n| [Lenovo ThinkPad T14 AMD Gen 4](lenovo/thinkpad/t14/amd/gen4)                     | `\u003cnixos-hardware/lenovo/thinkpad/t14/amd/gen4\u003e`         |\n| [Lenovo ThinkPad T14 AMD Gen 5](lenovo/thinkpad/t14/amd/gen5)                     | `\u003cnixos-hardware/lenovo/thinkpad/t14/amd/gen5\u003e`         |\n| [Lenovo ThinkPad T14](lenovo/thinkpad/t14)                                        | `\u003cnixos-hardware/lenovo/thinkpad/t14\u003e`                  |\n| [Lenovo ThinkPad T14s AMD Gen 1](lenovo/thinkpad/t14s/amd/gen1)                   | `\u003cnixos-hardware/lenovo/thinkpad/t14s/amd/gen1\u003e`        |\n| [Lenovo ThinkPad T14s AMD Gen 4](lenovo/thinkpad/t14s/amd/gen4)                   | `\u003cnixos-hardware/lenovo/thinkpad/t14s/amd/gen4\u003e`        |\n| [Lenovo ThinkPad T14s](lenovo/thinkpad/t14s)                                      | `\u003cnixos-hardware/lenovo/thinkpad/t14s\u003e`                 |\n| [Lenovo ThinkPad T410](lenovo/thinkpad/t410)                                      | `\u003cnixos-hardware/lenovo/thinkpad/t410\u003e`                 |\n| [Lenovo ThinkPad T420](lenovo/thinkpad/t420)                                      | `\u003cnixos-hardware/lenovo/thinkpad/t420\u003e`                 |\n| [Lenovo ThinkPad T430](lenovo/thinkpad/t430)                                      | `\u003cnixos-hardware/lenovo/thinkpad/t430\u003e`                 |\n| [Lenovo ThinkPad T440p](lenovo/thinkpad/t440p)                                    | `\u003cnixos-hardware/lenovo/thinkpad/t440p\u003e`                |\n| [Lenovo ThinkPad T440s](lenovo/thinkpad/t440s)                                    | `\u003cnixos-hardware/lenovo/thinkpad/t440s\u003e`                |\n| [Lenovo ThinkPad T450s](lenovo/thinkpad/t450s)                                    | `\u003cnixos-hardware/lenovo/thinkpad/t450s\u003e`                |\n| [Lenovo ThinkPad T460](lenovo/thinkpad/t460)                                      | `\u003cnixos-hardware/lenovo/thinkpad/t460\u003e`                 |\n| [Lenovo ThinkPad T460p](lenovo/thinkpad/t460p)                                    | `\u003cnixos-hardware/lenovo/thinkpad/t460p\u003e`                |\n| [Lenovo ThinkPad T460s](lenovo/thinkpad/t460s)                                    | `\u003cnixos-hardware/lenovo/thinkpad/t460s\u003e`                |\n| [Lenovo ThinkPad T470s](lenovo/thinkpad/t470s)                                    | `\u003cnixos-hardware/lenovo/thinkpad/t470s\u003e`                |\n| [Lenovo ThinkPad T480](lenovo/thinkpad/t480)                                      | `\u003cnixos-hardware/lenovo/thinkpad/t480\u003e`                 |\n| [Lenovo ThinkPad T480s](lenovo/thinkpad/t480s)                                    | `\u003cnixos-hardware/lenovo/thinkpad/t480s\u003e`                |\n| [Lenovo ThinkPad T490](lenovo/thinkpad/t490)                                      | `\u003cnixos-hardware/lenovo/thinkpad/t490\u003e`                 |\n| [Lenovo ThinkPad T490s](lenovo/thinkpad/t490s)                                    | `\u003cnixos-hardware/lenovo/thinkpad/t490s\u003e`                |\n| [Lenovo ThinkPad T495](lenovo/thinkpad/t495)                                      | `\u003cnixos-hardware/lenovo/thinkpad/t495\u003e`                 |\n| [Lenovo ThinkPad T520](lenovo/thinkpad/t520)                                      | `\u003cnixos-hardware/lenovo/thinkpad/t520\u003e`                 |\n| [Lenovo ThinkPad T550](lenovo/thinkpad/t550)                                      | `\u003cnixos-hardware/lenovo/thinkpad/t550\u003e`                 |\n| [Lenovo ThinkPad T590](lenovo/thinkpad/t590)                                      | `\u003cnixos-hardware/lenovo/thinkpad/t590\u003e`                 |\n| [Lenovo ThinkPad W520](lenovo/thinkpad/w520)                                      | `\u003cnixos-hardware/lenovo/thinkpad/w520\u003e`                 |\n| [Lenovo ThinkPad X1 Yoga](lenovo/thinkpad/x1/yoga)                                | `\u003cnixos-hardware/lenovo/thinkpad/x1/yoga\u003e`              |\n| [Lenovo ThinkPad X1 Yoga Gen 7](lenovo/thinkpad/x1/yoga/7th-gen/)                 | `\u003cnixos-hardware/lenovo/thinkpad/x1/yoga/7th-gen\u003e`      |\n| [Lenovo ThinkPad X1 (6th Gen)](lenovo/thinkpad/x1/6th-gen)                        | `\u003cnixos-hardware/lenovo/thinkpad/x1/6th-gen\u003e`           |\n| [Lenovo ThinkPad X1 (7th Gen)](lenovo/thinkpad/x1/7th-gen)                        | `\u003cnixos-hardware/lenovo/thinkpad/x1/7th-gen\u003e`           |\n| [Lenovo ThinkPad X1 (9th Gen)](lenovo/thinkpad/x1/9th-gen)                        | `\u003cnixos-hardware/lenovo/thinkpad/x1/9th-gen\u003e`           |\n| [Lenovo ThinkPad X1 (10th Gen)](lenovo/thinkpad/x1/10th-gen)                      | `\u003cnixos-hardware/lenovo/thinkpad/x1/10th-gen\u003e`          |\n| [Lenovo ThinkPad X1 (11th Gen)](lenovo/thinkpad/x1/11th-gen)                      | `\u003cnixos-hardware/lenovo/thinkpad/x1/11th-gen\u003e`          |\n| [Lenovo ThinkPad X1 (12th Gen)](lenovo/thinkpad/x1/12th-gen)                      | `\u003cnixos-hardware/lenovo/thinkpad/x1/12th-gen\u003e`          |\n| [Lenovo ThinkPad X1 Extreme Gen 2](lenovo/thinkpad/x1-extreme/gen2)               | `\u003cnixos-hardware/lenovo/thinkpad/x1-extreme/gen2\u003e`      |\n| [Lenovo ThinkPad X1 Extreme Gen 3](lenovo/thinkpad/x1-extreme/gen3)               | `\u003cnixos-hardware/lenovo/thinkpad/x1-extreme/gen3\u003e`      |\n| [Lenovo ThinkPad X1 Extreme Gen 4](lenovo/thinkpad/x1-extreme/gen4)               | `\u003cnixos-hardware/lenovo/thinkpad/x1-extreme/gen4\u003e`      |\n| [Lenovo ThinkPad X1 Nano Gen 1](lenovo/thinkpad/x1-nano/gen1)                     | `\u003cnixos-hardware/lenovo/thinkpad/x1-nano/gen1\u003e`         |\n| [Lenovo ThinkPad X13 Yoga](lenovo/thinkpad/x13/yoga)                              | `\u003cnixos-hardware/lenovo/thinkpad/x13/yoga\u003e`             |\n| [Lenovo ThinkPad X13 Yoga (3th Gen)](lenovo/thinkpad/x13/yoga/3th-gen)            | `\u003cnixos-hardware/lenovo/thinkpad/x13/yoga/3th-gen\u003e`     |\n| [Lenovo ThinkPad X13 (Intel)](lenovo/thinkpad/x13/intel)                          | `\u003cnixos-hardware/lenovo/thinkpad/x13/intel\u003e`            |\n| [Lenovo ThinkPad X13 (AMD)](lenovo/thinkpad/x13/amd)                              | `\u003cnixos-hardware/lenovo/thinkpad/x13/amd\u003e`              |\n| [Lenovo ThinkPad X140e](lenovo/thinkpad/x140e)                                    | `\u003cnixos-hardware/lenovo/thinkpad/x140e\u003e`                |\n| [Lenovo ThinkPad X200s](lenovo/thinkpad/x200s)                                    | `\u003cnixos-hardware/lenovo/thinkpad/x200s\u003e`                |\n| [Lenovo ThinkPad X220](lenovo/thinkpad/x220)                                      | `\u003cnixos-hardware/lenovo/thinkpad/x220\u003e`                 |\n| [Lenovo ThinkPad X230](lenovo/thinkpad/x230)                                      | `\u003cnixos-hardware/lenovo/thinkpad/x230\u003e`                 |\n| [Lenovo ThinkPad X250](lenovo/thinkpad/x250)                                      | `\u003cnixos-hardware/lenovo/thinkpad/x250\u003e`                 |\n| [Lenovo ThinkPad X260](lenovo/thinkpad/x260)                                      | `\u003cnixos-hardware/lenovo/thinkpad/x260\u003e`                 |\n| [Lenovo ThinkPad X270](lenovo/thinkpad/x270)                                      | `\u003cnixos-hardware/lenovo/thinkpad/x270\u003e`                 |\n| [Lenovo ThinkPad X280](lenovo/thinkpad/x280)                                      | `\u003cnixos-hardware/lenovo/thinkpad/x280\u003e`                 |\n| [Lenovo ThinkPad X390](lenovo/thinkpad/x390)                                      | `\u003cnixos-hardware/lenovo/thinkpad/x390\u003e`                 |\n| [Lenovo ThinkPad Z Series](lenovo/thinkpad/z)                                     | `\u003cnixos-hardware/lenovo/thinkpad/z\u003e`                    |\n| [Lenovo ThinkPad Z13 Gen 1](lenovo/thinkpad/z/gen1/z13)                           | `\u003cnixos-hardware/lenovo/thinkpad/z/gen1/z13\u003e`           |\n| [Lenovo ThinkPad Z13 Gen 2](lenovo/thinkpad/z/gen2/z13)                           | `\u003cnixos-hardware/lenovo/thinkpad/z/gen2/z13\u003e`           |\n| [LENOVO Yoga 6 13ALC6 82ND](lenovo/yoga/6/13ALC6)                                 | `\u003cnixos-hardware/lenovo/yoga/6/13ALC6\u003e`                 |\n| [LENOVO Yoga Slim 7 Pro-X 14ARH7 82ND](lenovo/yoga/7/14ARH7/amdgpu)               | `\u003cnixos-hardware/lenovo/yoga/7/14ARH7/amdgpu\u003e`          |\n| [LENOVO Yoga Slim 7 Pro-X 14ARH7 82ND](lenovo/yoga/7/14ARH7/nvidia)               | `\u003cnixos-hardware/lenovo/yoga/7/14ARH7/nvidia\u003e`          |\n| [Lenovo Yoga Slim 7i Pro X 14IAH7 (Integrated)](lenovo/yoga/7/14IAH7/integrated)  |`\u003cnixos-hardware/lenovo/yoga/7/14IAH7/integrated\u003e`       |\n| [Lenovo Yoga Slim 7i Pro X 14IAH7 (Hybrid)](lenovo/yoga/7/14IAH7/hybrid)          |`\u003cnixos-hardware/lenovo/yoga/7/14IAH7/hybrid\u003e`           |\n| [LENOVO Yoga 7 Slim Gen8](lenovo/yoga/7/slim/gen8)                                | `\u003cnixos-hardware/lenovo/yoga/7/slim/gen8\u003e`              |\n| [MSI B550-A PRO](msi/b550-a-pro)                                                  | `\u003cnixos-hardware/msi/b550-a-pro\u003e`                       |\n| [MSI B350 TOMAHAWK](msi/b350-tomahawk)                                            | `\u003cnixos-hardware/msi/b350-tomahawk\u003e`                    |\n| [MSI GS60 2QE](msi/gs60)                                                          | `\u003cnixos-hardware/msi/gs60\u003e`                             |\n| [MSI GL62/CX62](msi/gl62)                                                         | `\u003cnixos-hardware/msi/gl62\u003e`                             |\n| [MSI GL65 10SDR-492](msi/gl65/10SDR-492)                                          | `\u003cnixos-hardware/msi/gl65/10SDR-492\u003e`                   |\n| [Microchip Icicle Kit](microchip/icicle-kit)                                      | `\u003cnixos-hardware/microchip/icicle-kit\u003e`                 |\n| [Microsoft Surface Go](microsoft/surface/surface-go)                              | `\u003cnixos-hardware/microsoft/surface/surface-go\u003e`         |\n| [Microsoft Surface Pro (Intel)](microsoft/surface/surface-pro-intel)              | `\u003cnixos-hardware/microsoft/surface/surface-pro-intel\u003e`  |\n| [Microsoft Surface Laptop (AMD)](microsoft/surface/surface-laptop-amd)            | `\u003cnixos-hardware/microsoft/surface/surface-laptop-amd\u003e` |\n| [Microsoft Surface Range (Common Modules)](microsoft/surface/common)              | `\u003cnixos-hardware/microsoft/surface/common\u003e`             |\n| [Microsoft Surface Pro 3](microsoft/surface-pro/3)                                | `\u003cnixos-hardware/microsoft/surface-pro/3\u003e`              |\n| [Microsoft Surface Pro 9](microsoft/surface-pro/9)                                | `\u003cnixos-hardware/microsoft/surface-pro/9\u003e`              |\n| [Morefine M600](morefine/m600)                                                    | `\u003cnixos-hardware/morefine/m600\u003e`                        |\n| [Minisforum V3](minisforum/v3)                                                    | `\u003cnixos-hardware/minisforum/v3\u003e`                        |\n| [NXP iMX8 MPlus Evaluation Kit](nxp/imx8mp-evk)                                   | `\u003cnixos-hardware/nxp/imx8mp-evk\u003e`                       |\n| [NXP iMX8 MQuad Evaluation Kit](nxp/imx8mq-evk)                                   | `\u003cnixos-hardware/nxp/imx8mq-evk\u003e`                       |\n| [Hardkernel Odroid HC4](hardkernel/odroid-hc4/default.nix)                        | `\u003cnixos-hardware/hardkernel/odroid-hc4\u003e`                |\n| [Hardkernel Odroid H3](hardkernel/odroid-h3/default.nix)                          | `\u003cnixos-hardware/hardkernel/odroid-h3\u003e`                 |\n| [Hardkernel Odroid H4](hardkernel/odroid-h4/default.nix)                          | `\u003cnixos-hardware/hardkernel/odroid-h4\u003e`                 |\n| [Omen 14-fb0798ng](omen/14-fb0798ng)                                              | `\u003cnixos-hardware/omen/14-fb0798ng\u003e`                     |\n| [Omen 15-ce002ns](omen/15-ce002ns)                                                | `\u003cnixos-hardware/omen/15-ce002ns\u003e`                      |\n| [Omen 15-en0010ca](omen/15-en0010ca)                                              | `\u003cnixos-hardware/omen/15-en0010ca\u003e`                     |\n| [Omen 16-n0005ne](omen/16-n0005ne)                                                | `\u003cnixos-hardware/omen/16-n0005ne\u003e`                      |\n| [Omen 16-n0280nd](/omen/16-n0280nd)                                               | `\u003cnixos-hardware/omen/16-n0280nd\u003e`                      |\n| [Omen 15-en1007sa](omen/15-en1007sa)                                              | `\u003cnixos-hardware/omen/15-en1007sa\u003e`                     |\n| [Omen 15-en0002np](omen/15-en0002np)                                              | `\u003cnixos-hardware/omen/15-en0002np\u003e`                     |\n| [One-Netbook OneNetbook 4](onenetbook/4)                                          | `\u003cnixos-hardware/onenetbook/4\u003e`                         |\n| [Panasonic Let's Note CF-LX4](panasonic/letsnote/cf-lx4)                          | `\u003cnixos-hardware/panasonic/letsnote/cf-lx4\u003e`            |\n| [PC Engines APU](pcengines/apu)                                                   | `\u003cnixos-hardware/pcengines/apu\u003e`                        |\n| [PINE64 Pinebook Pro](pine64/pinebook-pro/)                                       | `\u003cnixos-hardware/pine64/pinebook-pro\u003e`                  |\n| [PINE64 RockPro64](pine64/rockpro64/)                                             | `\u003cnixos-hardware/pine64/rockpro64\u003e`                     |\n| [PINE64 STAR64](pine64/star64/)                                                   | `\u003cnixos-hardware/pine64/star64\u003e`                        |\n| [Protectli VP4670](protectli/vp4670/)                                             | `\u003cnixos-hardware/protectli/vp4670\u003e`                     |\n| [Purism Librem 13v3](purism/librem/13v3)                                          | `\u003cnixos-hardware/purism/librem/13v3\u003e`                   |\n| [Purism Librem 15v3](purism/librem/13v3)                                          | `\u003cnixos-hardware/purism/librem/15v3\u003e`                   |\n| [Purism Librem 5r4](purism/librem/5r4)                                            | `\u003cnixos-hardware/purism/librem/5r4\u003e`                    |\n| [Radxa ROCK 4C+](radxa/rock-4c-plus)                                              | `\u003cnixos-hardware/radxa/rock-4c-plus\u003e`                   |\n| [Raspberry Pi 2](raspberry-pi/2)                                                  | `\u003cnixos-hardware/raspberry-pi/2\u003e`                       |\n| [Raspberry Pi 3](raspberry-pi/3)                                                  | `\u003cnixos-hardware/raspberry-pi/3\u003e`                       |\n| [Raspberry Pi 4](raspberry-pi/4)                                                  | `\u003cnixos-hardware/raspberry-pi/4\u003e`                       |\n| [Raspberry Pi 5](raspberry-pi/5)                                                  | `\u003cnixos-hardware/raspberry-pi/5\u003e`                       |\n| [Samsung Series 9 NP900X3C](samsung/np900x3c)                                     | `\u003cnixos-hardware/samsung/np900x3c\u003e`                     |\n| [Slimbook Hero RPL-RTX](slimbook/hero/rpl-rtx)                                    | `\u003cnixos-hardware/slimbook/hero/rpl-rtx\u003e`                |\n| [StarFive VisionFive v1](starfive/visionfive/v1)                                  | `\u003cnixos-hardware/starfive/visionfive/v1\u003e`               |\n| [StarFive VisionFive 2](starfive/visionfive/v2)                                   | `\u003cnixos-hardware/starfive/visionfive/v2\u003e`               |\n| [StarLabs StarLite 5 (I5)](starlabs/starlite/i5)                                  | `\u003cnixos-hardware/starlabs/starlite/i5\u003e`                 |\n| [Supermicro A1SRi-2758F](supermicro/a1sri-2758f)                                  | `\u003cnixos-hardware/supermicro/a1sri-2758f\u003e`               |\n| [Supermicro M11SDV-8C-LN4F](supermicro/m11sdv-8c-ln4f)                            | `\u003cnixos-hardware/supermicro/m11sdv-8c-ln4f\u003e`            |\n| [Supermicro X10SLL-F](supermicro/x10sll-f)                                        | `\u003cnixos-hardware/supermicro/x10sll-f\u003e`                  |\n| [Supermicro X12SCZ-TLN4F](supermicro/x12scz-tln4f)                                | `\u003cnixos-hardware/supermicro/x12scz-tln4f\u003e`              |\n| [System76 (generic)](system76)                                                    | `\u003cnixos-hardware/system76\u003e`                             |\n| [System76 Darter Pro 6](system76/darp6)                                           | `\u003cnixos-hardware/system76/darp6\u003e`                       |\n| [System76 Gazelle 18](system76/gaze18)                                            | `\u003cnixos-hardware/system76/gaze18\u003e`                      |\n| [System76 Galago Pro 5](system76/galp5-1650)                                      | `\u003cnixos-hardware/system76/galp5-1650\u003e`                  |\n| [Toshiba Chromebook 2 `swanky`](toshiba/swanky)                                   | `\u003cnixos-hardware/toshiba/swanky\u003e`                       |\n| [Tuxedo InfinityBook v4](tuxedo/infinitybook/v4)                                  | `\u003cnixos-hardware/tuxedo/infinitybook/v4\u003e`               |\n| [TUXEDO Aura 15 - Gen1](tuxedo/aura/15/gen1)                                      | `\u003cnixos-hardware/tuxedo/aura/15/gen1\u003e`                  |\n| [TUXEDO InfinityBook Pro 14 - Gen7](tuxedo/infinitybook/pro14/gen7)               | `\u003cnixos-hardware/tuxedo/infinitybook/pro14/gen7\u003e`       |\n| [TUXEDO Pulse 14 - Gen3](tuxedo/pulse/14/gen3)                                    | `\u003cnixos-hardware/tuxedo/pulse/14/gen3\u003e`                 |\n| [TUXEDO Pulse 15 - Gen2](tuxedo/pulse/15/gen2)                                    | `\u003cnixos-hardware/tuxedo/pulse/15/gen2\u003e`                 |\n| [Xiaomi Redmibook 16 Pro 2024](xiaomi/redmibook/16-pro-2024)                      | `\u003cnixos-hardware/xiaomi/redmibook/16-pro-2024\u003e`         |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshymega%2Fnixos-hardware","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshymega%2Fnixos-hardware","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshymega%2Fnixos-hardware/lists"}