-
-
Notifications
You must be signed in to change notification settings - Fork 679
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ROG Ally: Add basic config as default.nix
- Loading branch information
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# [ROG Ally (2023)](https://rog.asus.com/gaming-handhelds/rog-ally/rog-ally-2023/) | ||
|
||
## BIOS | ||
|
||
The ROG Ally has a troublesome history with different BIOS versions creating different issues. | ||
At the time of writing, the current BIOS version 330 allows for working audio without further kernel patches. | ||
|
||
## Further resources | ||
|
||
- The steam module from https://github.com/Jovian-Experiments/Jovian-NixOS can be used to boot into the Steam Deck UI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ pkgs, lib, ... }: | ||
{ | ||
imports = [ | ||
../../../common/cpu/amd | ||
../../../common/cpu/amd/pstate.nix | ||
../../../common/gpu/amd | ||
../../../common/pc/laptop | ||
../../../common/pc/laptop/ssd | ||
../../battery.nix | ||
]; | ||
|
||
# 6.5 adds many fixes and improvements for the Ally | ||
# This includes for example performance, audio and bluetooth | ||
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.5") (lib.mkDefault pkgs.linuxPackages_latest); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters