diff --git a/README.md b/README.md index dd115fe..4c9bcb8 100644 --- a/README.md +++ b/README.md @@ -440,6 +440,7 @@ See code for all available configurations. | [System76 (generic)](system76) | `` | `system76` | | [System76 Darter Pro 6](system76/darp6) | `` | `system76-darp6` | | [System76 Gazelle 18](system76/gaze18) | `` | `system76-gaze18` | +| [System76 Galago Pro 3](system76/galp3) | `` | `system76-galp3` | | [System76 Galago Pro 5](system76/galp5-1650) | `` | `system76-galp5-1650` | | [System76 Thelio Mega](system76/thelio-mega) | `` | `system76-thelio-mega` | | [Toshiba Chromebook 2 `swanky`](toshiba/swanky) | `` | `toshiba-swanky` | diff --git a/flake.nix b/flake.nix index 57558e5..eade087 100644 --- a/flake.nix +++ b/flake.nix @@ -416,6 +416,7 @@ system76-galp5-1650 = import ./system76/galp5-1650; system76-darp6 = import ./system76/darp6; system76-thelio-mega = import ./system76/thelio-mega; + system76-galp3 = import ./system76/galp3; toshiba-swanky = import ./toshiba/swanky; tuxedo-aura-15-gen1 = import ./tuxedo/aura/15/gen1; tuxedo-infinitybook-v4 = import ./tuxedo/infinitybook/v4; diff --git a/system76/galp3/default.nix b/system76/galp3/default.nix new file mode 100644 index 0000000..746e162 --- /dev/null +++ b/system76/galp3/default.nix @@ -0,0 +1,9 @@ +{ + imports = [ + ../. + # not import ../../common/pc/laptop since tlp and ppd both conflict with system76-power + ../../common/pc/ssd + ../../common/cpu/intel/kaby-lake + ../../common/hidpi.nix + ]; +}