2022-02-02 18:11:11 +01:00
|
|
|
{ lib, pkgs, ... }: {
|
|
|
|
imports = [
|
|
|
|
../common/cpu/intel
|
|
|
|
../common/pc/laptop
|
|
|
|
../common/pc/laptop/ssd
|
|
|
|
];
|
|
|
|
|
2022-05-19 15:43:13 +02:00
|
|
|
boot.kernelParams = [
|
|
|
|
# For Power consumption
|
|
|
|
# https://kvark.github.io/linux/framework/2021/10/17/framework-nixos.html
|
|
|
|
"mem_sleep_default=deep"
|
|
|
|
# For Power consumption
|
|
|
|
# https://community.frame.work/t/linux-battery-life-tuning/6665/156
|
|
|
|
"nvme.noacpi=1"
|
|
|
|
];
|
2022-02-02 18:11:11 +01:00
|
|
|
|
2022-04-13 11:27:33 +02:00
|
|
|
# Requires at least 5.16 for working wi-fi and bluetooth.
|
2022-02-02 18:11:11 +01:00
|
|
|
# https://community.frame.work/t/using-the-ax210-with-linux-on-the-framework-laptop/1844/89
|
2022-04-13 11:27:33 +02:00
|
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") (lib.mkDefault pkgs.linuxPackages_latest);
|
2022-02-02 18:11:11 +01:00
|
|
|
|
2022-05-19 21:56:34 +02:00
|
|
|
# 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
|
|
|
|
'';
|
|
|
|
|
2022-02-02 18:11:11 +01:00
|
|
|
# For fingerprint support
|
2022-05-20 17:05:03 +02:00
|
|
|
services.fprintd.enable = lib.mkDefault true;
|
2022-02-02 18:11:11 +01:00
|
|
|
|
2022-05-19 21:51:19 +02:00
|
|
|
# Fix headphone noise when on powersave
|
|
|
|
# https://community.frame.work/t/headphone-jack-intermittent-noise/5246/55
|
|
|
|
services.udev.extraRules = ''
|
|
|
|
SUBSYSTEM=="pci", ATTR{vendor}=="0x8086", ATTR{device}=="0xa0e0", ATTR{power/control}="on"
|
|
|
|
'';
|
|
|
|
|
2022-05-02 00:19:58 +02:00
|
|
|
# Mis-detected by nixos-generate-config
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/171093
|
|
|
|
# https://wiki.archlinux.org/title/Framework_Laptop#Changing_the_brightness_of_the_monitor_does_not_work
|
|
|
|
hardware.acpilight.enable = lib.mkDefault true;
|
|
|
|
|
2022-02-02 18:11:11 +01:00
|
|
|
# HiDPI
|
2022-02-04 17:06:29 +01:00
|
|
|
# Leaving here for documentation
|
|
|
|
# hardware.video.hidpi.enable = lib.mkDefault true;
|
|
|
|
|
|
|
|
# Fix font sizes in X
|
2022-03-08 16:17:02 +01:00
|
|
|
# services.xserver.dpi = 200;
|
2022-02-02 18:11:11 +01:00
|
|
|
}
|