2022-02-02 12:11:11 -05:00
|
|
|
{ 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" ];
|
|
|
|
|
2022-04-13 05:27:33 -04:00
|
|
|
# Requires at least 5.16 for working wi-fi and bluetooth.
|
2022-02-02 12:11:11 -05:00
|
|
|
# https://community.frame.work/t/using-the-ax210-with-linux-on-the-framework-laptop/1844/89
|
2022-04-13 05:27:33 -04:00
|
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") (lib.mkDefault pkgs.linuxPackages_latest);
|
2022-02-02 12:11:11 -05:00
|
|
|
|
2022-05-19 15:56:34 -04: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 12:11:11 -05:00
|
|
|
# For fingerprint support
|
|
|
|
services.fprintd.enable = true;
|
|
|
|
|
2022-05-19 15:51:19 -04: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-01 18:19:58 -04: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 12:11:11 -05:00
|
|
|
# HiDPI
|
2022-02-04 11:06:29 -05:00
|
|
|
# Leaving here for documentation
|
|
|
|
# hardware.video.hidpi.enable = lib.mkDefault true;
|
|
|
|
|
|
|
|
# Fix font sizes in X
|
2022-03-08 10:17:02 -05:00
|
|
|
# services.xserver.dpi = 200;
|
2022-02-02 12:11:11 -05:00
|
|
|
}
|