Skip to content

Commit 3b622ae

Browse files
Add System76 Thelio Mega module
1 parent f49bb3b commit 3b622ae

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,7 @@ See code for all available configurations.
406406
| [System76 Darter Pro 6](system76/darp6) | `<nixos-hardware/system76/darp6>` | `system76-darp6`|
407407
| [System76 Gazelle 18](system76/gaze18) | `<nixos-hardware/system76/gaze18>` | `system76-gaze18`|
408408
| [System76 Galago Pro 5](system76/galp5-1650) | `<nixos-hardware/system76/galp5-1650>` | `system76-galp5-1650`|
409+
| [System76 Thelio Mega](system76/thelio-mega) | `<nixos-hardware/system76/thelio-mega>` | `system76-thelio-mega`|
409410
| [Toshiba Chromebook 2 `swanky`](toshiba/swanky) | `<nixos-hardware/toshiba/swanky>` | `toshiba-swanky`|
410411
| [Tuxedo InfinityBook v4](tuxedo/infinitybook/v4) | `<nixos-hardware/tuxedo/infinitybook/v4>` | `tuxedo-infinitybook-v4`|
411412
| [TUXEDO Aura 15 - Gen1](tuxedo/aura/15/gen1) | `<nixos-hardware/tuxedo/aura/15/gen1>` | `tuxedo-aura-15-gen1`|

flake.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,7 @@
348348
system76-gaze18 = import ./system76/gaze18;
349349
system76-galp5-1650 = import ./system76/galp5-1650;
350350
system76-darp6 = import ./system76/darp6;
351+
system76-thelio-mega = import ./system76/thelio-mega;
351352
toshiba-swanky = import ./toshiba/swanky;
352353
tuxedo-aura-15-gen1 = import ./tuxedo/aura/15/gen1;
353354
tuxedo-infinitybook-v4 = import ./tuxedo/infinitybook/v4;

system76/thelio-mega/default.nix

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Hardware profile for the Thelio Mega desktop workstation by System76.
2+
#
3+
# https://system76.com/desktops/thelio-mega-r4-n3/configure
4+
{
5+
config,
6+
lib,
7+
...
8+
}:
9+
{
10+
imports = [
11+
../../common/cpu/amd
12+
../../common/gpu/nvidia
13+
];
14+
15+
hardware.nvidia.open = true;
16+
}

0 commit comments

Comments
 (0)