Framework Laptop 16

From NixOS Wiki
Revision as of 21:16, 13 June 2024 by Slips (talk | contribs) (Touchpad palm rejection fix)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Framework Laptop 16
Laptop 16
Manufacturer Framework
Architecture x86_64-linux
7040 Series
Status maybe supported

The Framework Laptop 16 is a configurable, upgradeable, and repairable laptop made by the Framework company.

Status

The device boots NixOS.

Known issues

Configuration

Framework specific NixOS hardware options are bundled within the nixos-hardware project.

AMD 7040 Series

It is recommended to use power-profiles-daemon over tlp for the AMD framework.

Touchpad Palm Rejection

The Framework 16 keyboard is treated as an external USB device by libinput causing the touchpad to stay enabled when typing.

Fix sourced from here: community.frame.work by: @sumiflow

environment.etc = {
  "libinput/local-overrides.quirks".text = ''
    [Keyboard]
    MatchUdevType=keyboard
    MatchName=Framework Laptop 16 Keyboard Module - ANSI Keyboard
    AttrKeyboardIntegration=internal
  '';
};