mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:03:56 -05:00
Aly Raffauf
b3e3fda67e
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / adjustor-build (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / hhd-ui-build (push) Waiting to run
nix-build / rofi-bluetooth-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
* hwModuled/amd/cpu: switch to zenpower * hwModules/framework/13/amd-7000: improve format * hwModules: add common and common-gaming modules * hwModules/legion/go: killuserProcesses on logout
115 lines
3.7 KiB
Nix
115 lines
3.7 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
self,
|
|
...
|
|
}: let
|
|
legion-go-tricks = pkgs.fetchFromGitHub {
|
|
owner = "aarron-lee";
|
|
repo = "legion-go-tricks";
|
|
rev = "773f4dfa217989213ab2678d63a84dc306e8f8d4";
|
|
sha256 = "sha256-d5TB4kvNR7bwF5VyO1hxe8n9/PubtzWlBgvSmpUgDQc=";
|
|
};
|
|
|
|
convolverPath = "${legion-go-tricks}/experimental_sound_fix/multiwayCor48.wav";
|
|
in {
|
|
imports = [
|
|
self.nixosModules.hw-common
|
|
self.nixosModules.hw-common-amd-cpu
|
|
self.nixosModules.hw-common-amd-gpu
|
|
self.nixosModules.hw-common-bluetooth
|
|
self.nixosModules.hw-common-gaming
|
|
self.nixosModules.hw-common-ssd
|
|
];
|
|
|
|
boot = {
|
|
initrd.availableKernelModules = [
|
|
"nvme"
|
|
"rtsx_pci_sdmmc"
|
|
"sd_mod"
|
|
"sdhci_pci"
|
|
"thunderbolt"
|
|
"usb_storage"
|
|
"usbhid"
|
|
"xhci_pci"
|
|
];
|
|
|
|
extraModulePackages = with config.boot.kernelPackages; [acpi_call];
|
|
|
|
# Xanmod seems more responsive under load
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_xanmod_latest;
|
|
};
|
|
|
|
hardware.sensor.iio.enable = true;
|
|
|
|
services = {
|
|
logind.killUserProcesses = true;
|
|
|
|
pipewire.wireplumber.configPackages = [
|
|
(pkgs.writeTextDir "share/pipewire/pipewire.conf.d/10-legion-go-convolver.conf" ''
|
|
# Convolver Configuration for Pipewire
|
|
#
|
|
# This configuration applies separate left and right convolver effects using the corresponding impulse response files
|
|
# to the entire system audio output.
|
|
|
|
context.modules = [
|
|
{ name = libpipewire-module-filter-chain
|
|
args = {
|
|
node.description = "Legion Go"
|
|
media.name = "Legion Go"
|
|
filter.graph = {
|
|
nodes = [
|
|
{
|
|
type = builtin
|
|
label = convolver
|
|
name = convFL
|
|
config = {
|
|
filename = "${convolverPath}"
|
|
channel = 0
|
|
}
|
|
}
|
|
{
|
|
type = builtin
|
|
label = convolver
|
|
name = convFR
|
|
config = {
|
|
filename = "${convolverPath}"
|
|
channel = 1
|
|
}
|
|
}
|
|
]
|
|
inputs = [ "convFL:In" "convFR:In" ]
|
|
outputs = [ "convFL:Out" "convFR:Out" ]
|
|
}
|
|
capture.props = {
|
|
node.name = "Legion Go"
|
|
node.autoconnect = true
|
|
media.class = "Audio/Sink"
|
|
priority.driver = 1000
|
|
priority.session = 2000
|
|
audio.channels = 2
|
|
audio.position = [ FL FR ]
|
|
}
|
|
playback.props = {
|
|
node.name = "Legion Go corrected"
|
|
node.passive = true
|
|
audio.channels = 2
|
|
audio.position = [ FL FR ]
|
|
node.target = "alsa_output.pci-0000_c2_00.6.analog-stereo"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
'')
|
|
];
|
|
|
|
udev.extraRules = ''
|
|
# Lenovo Legion Go Controller
|
|
ACTION=="add", ATTRS{idVendor}=="17ef", ATTRS{idProduct}=="6182", RUN+="${pkgs.kmod}/bin/modprobe xpad" RUN+="/bin/sh -c 'echo 17ef 6182 > /sys/bus/usb/drivers/xpad/new_id'"
|
|
'';
|
|
|
|
upower.enable = true;
|
|
};
|
|
}
|