-
-
Notifications
You must be signed in to change notification settings - Fork 629
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
161 additions
and
3 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
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
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,39 @@ | ||
{ pkgs, ... }: | ||
{ | ||
|
||
# Override the DSDT ACPI table to fix the accelerometer. | ||
# A driver already exists for a similar sensor. | ||
# This overrides the IDs to make the existing driver work. | ||
# From [Accelerometer on Linux](https://github.com/mudkipme/awesome-minisforum-v3/issues/2#issuecomment-2279282784) | ||
boot.initrd.prepend = | ||
let | ||
minisforum-acpi-override = pkgs.stdenv.mkDerivation { | ||
name = "minisforum-acpi-override"; | ||
CPIO_PATH = "kernel/firmware/acpi"; | ||
|
||
src = pkgs.callPackage ./src.nix {}; | ||
patches = [ ./dsdt.patch ]; | ||
|
||
nativeBuildInputs = with pkgs; [ | ||
acpica-tools | ||
cpio | ||
]; | ||
|
||
installPhase = '' | ||
mkdir -p $CPIO_PATH | ||
iasl -tc ./dsdt.dsl | ||
cp ./dsdt.aml $CPIO_PATH | ||
find kernel | cpio -H newc --create > acpi_override | ||
cp acpi_override $out | ||
''; | ||
}; | ||
in | ||
[ (toString minisforum-acpi-override) ]; | ||
|
||
# Fix inverted accelerometer rotation. | ||
services.udev.extraHwdb = '' | ||
sensor:modalias:acpi:SMO8B30*:dmi:*svnMicroComputer*:pnV3:* | ||
ACCEL_MOUNT_MATRIX=-1, 0, 0; 0, -1, 0; 0, 0, -1 | ||
''; | ||
|
||
} |
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,47 @@ | ||
{ ... }: | ||
{ | ||
# Fix microphone. | ||
# From [Volume control workaround doesn't work on Arch](https://github.com/mudkipme/awesome-minisforum-v3/issues/10#issuecomment-2317474057) | ||
boot.extraModprobeConfig = '' | ||
options snd-hda-intel model=alc256-asus-aio | ||
''; | ||
|
||
# From [volume control fixes for arch](https://github.com/mudkipme/awesome-minisforum-v3/issues/9#issue-2407782714) | ||
services.pipewire.wireplumber.extraConfig."alsa-soft-mixer"."monitor.alsa.rules" = [ | ||
{ | ||
# Enable soft-mixer. | ||
# Fix global volume control. | ||
actions.update-props."api.alsa.soft-mixer" = true; | ||
matches = [ | ||
{ | ||
"device.name" = "~alsa_card.*"; | ||
} | ||
]; | ||
} | ||
{ | ||
# Disable soft-mixer for input devices. | ||
actions.update-props."api.alsa.soft-mixer" = false; | ||
matches = [ | ||
{ | ||
"device.name" = "~alsa_card.*"; | ||
"node.name" = "~alsa_input.*"; | ||
} | ||
]; | ||
} | ||
{ | ||
# Disable audio session suspension. | ||
# Fix bug with plugged in headphones. | ||
# From [Disable audio session suspension](https://github.com/mudkipme/awesome-minisforum-v3?tab=readme-ov-file#disable-audio-session-suspension) | ||
actions.update-props."session.suspend-timeout-seconds" = "0"; | ||
matches = [ | ||
{ | ||
"node.name" = "~alsa_input.*"; | ||
} | ||
{ | ||
"node.name" = "~alsa_output.*"; | ||
} | ||
]; | ||
} | ||
]; | ||
|
||
} |
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,12 @@ | ||
{ ... }: | ||
{ | ||
imports = [ | ||
./accelerometer.nix | ||
./audio.nix | ||
./power.nix | ||
|
||
../../common/gpu/amd/default.nix | ||
../../common/cpu/amd/default.nix | ||
../../common/pc/laptop/default.nix | ||
]; | ||
} |
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,31 @@ | ||
--- dsdt.dsl 2024-08-10 06:24:09.143777067 +0200 | ||
+++ patched/dsdt.dsl 2024-08-10 04:58:50.191036154 +0200 | ||
@@ -18,7 +18,7 @@ | ||
* Compiler ID "INTL" | ||
* Compiler Version 0x20220331 (539099953) | ||
*/ | ||
-DefinitionBlock ("", "DSDT", 2, "ALASKA", "A M I ", 0x01072009) | ||
+DefinitionBlock ("", "DSDT", 2, "ALASKA", "A M I ", 0x01072019) | ||
{ | ||
External (_SB_.APTS, MethodObj) // 1 Arguments | ||
External (_SB_.AWAK, MethodObj) // 1 Arguments | ||
@@ -7341,7 +7341,7 @@ | ||
|
||
Device (CIND) | ||
{ | ||
- Name (_HID, "ID9001") // _HID: Hardware ID | ||
+ Name (_HID, "INT33D3") // _HID: Hardware ID | ||
Name (_CID, "PNP0C60" /* Display Sensor Device */) // _CID: Compatible ID | ||
Method (_STA, 0, Serialized) // _STA: Status | ||
{ | ||
@@ -7364,8 +7364,8 @@ | ||
{ | ||
Device (STS) | ||
{ | ||
- Name (_HID, EisaId ("SMOCF05")) // _HID: Hardware ID | ||
- Name (_CID, EisaId ("SMOCF05")) // _CID: Compatible ID | ||
+ Name (_HID, EisaId ("SMO8B30")) // _HID: Hardware ID | ||
+ Name (_CID, EisaId ("SMO8B30")) // _CID: Compatible ID | ||
Name (_UID, Zero) // _UID: Unique ID | ||
Method (_STA, 0, NotSerialized) // _STA: Status | ||
{ |
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,19 @@ | ||
{ pkgs, ... }: | ||
{ | ||
|
||
# From [Optimizing power draw (under Linux)](https://github.com/mudkipme/awesome-minisforum-v3/issues/5#issue-2391536450) | ||
boot.kernelParams = [ "pcie_aspm.policy=powersupersave" ]; | ||
systemd.services.enable-aspm = { | ||
wantedBy = [ "default.target" ]; | ||
serviceConfig = { | ||
ExecStart = "${pkgs.bash}/bin/bash ${pkgs.callPackage ./src.nix { }}/aspm_v3.sh"; | ||
Restart = "no"; | ||
}; | ||
|
||
path = with pkgs; [ | ||
bc | ||
pciutils | ||
]; | ||
}; | ||
|
||
} |
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,8 @@ | ||
# Outsource for aspm_v3.sh and dsdt.dsl | ||
{ fetchFromGitHub, ... }: | ||
fetchFromGitHub { | ||
owner = "eum3l"; | ||
repo = "minisforum-v3-nixos-hardware"; | ||
rev = "4b1d99b3379d046142c1094018072acc22b40c70"; | ||
hash = "sha256-UBPTLbSjDdL6NPUrAdsWcL28QSyiY/5oA+iqxl9dEGY="; | ||
} |