mirror of
https://github.com/NixOS/nixos-hardware
synced 2025-02-17 05:25:04 +01:00
As in the below forum post, this is not perhaps the most ideal solution to the problem, but it is the simplest. https://community.frame.work/t/headset-microphone-on-linux/12387/3
31 lines
969 B
Nix
31 lines
969 B
Nix
{ lib, pkgs, ... }: {
|
|
imports = [
|
|
../common/cpu/intel
|
|
../common/pc/laptop
|
|
../common/pc/laptop/ssd
|
|
];
|
|
|
|
# For Power consumption
|
|
# https://kvark.github.io/linux/framework/2021/10/17/framework-nixos.html
|
|
boot.kernelParams = [ "mem_sleep_default=deep" ];
|
|
|
|
# Requires at least 5.16 for working wi-fi and bluetooth.
|
|
# https://community.frame.work/t/using-the-ax210-with-linux-on-the-framework-laptop/1844/89
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") (lib.mkDefault pkgs.linuxPackages_latest);
|
|
|
|
# Fix TRRS headphones missing a mic
|
|
# https://community.frame.work/t/headset-microphone-on-linux/12387/3
|
|
boot.extraModprobeConfig = ''
|
|
options snd-hda-intel model=dell-headset-multi
|
|
'';
|
|
|
|
# For fingerprint support
|
|
services.fprintd.enable = true;
|
|
|
|
# HiDPI
|
|
# Leaving here for documentation
|
|
# hardware.video.hidpi.enable = lib.mkDefault true;
|
|
|
|
# Fix font sizes in X
|
|
# services.xserver.dpi = 200;
|
|
}
|