mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-12-25 02:11:02 +01:00
Fix Gigabyte B650 suspend issue (#1385)
This commit is contained in:
parent
bbf25ca940
commit
55e9685ec6
5 changed files with 13 additions and 5 deletions
|
|
@ -6,8 +6,3 @@ bug where the PC will wakeup immediately after going into suspend.
|
|||
## Affects at least
|
||||
|
||||
- Gigabyte B650M Aorus Elite AX (Rev. 1.3) (BIOS Version F32b)
|
||||
- Can not be fixed by modifying enabled entries in /proc/acpi/wakeup.
|
||||
Computer wakes up even if all enabled entries are disabled. Therefore, no
|
||||
fix exist currently.
|
||||
|
||||
|
||||
|
|
|
|||
6
gigabyte/b650/b650-fix-suspend.nix
Normal file
6
gigabyte/b650/b650-fix-suspend.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
# see https://bbs.archlinux.org/viewtopic.php?pid=2227023
|
||||
boot.kernelParams = [
|
||||
"acpi_osi=\"!Windows 2015\""
|
||||
];
|
||||
}
|
||||
5
gigabyte/b650/default.nix
Normal file
5
gigabyte/b650/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./b650-fix-suspend.nix
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue