49 lines
1.6 KiB
Nix
49 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
namespace,
|
|
system,
|
|
target,
|
|
format,
|
|
virtual,
|
|
systems,
|
|
config,
|
|
...
|
|
}:
|
|
with lib;
|
|
with lib.${namespace}; let
|
|
cfg = config.${namespace}.hardware.framework12;
|
|
in {
|
|
options.${namespace}.hardware.framework12 = with types; {
|
|
enable = mkBoolOpt false "Enable hardware support for framework 12. P.s. you still need to import inputs.nixos-hardware.nixosModules.framework-12-13th-gen-intel yourself";
|
|
};
|
|
config = mkIf cfg.enable {
|
|
# Ensure that the `pinctrl_tigerlake` kernel module is loaded before `soc_button_array`.
|
|
# This is required for correcly switching to tablet mode when the display is folded back.
|
|
boot.extraModprobeConfig = ''
|
|
softdep soc_button_array pre: pinctrl_tigerlake
|
|
'';
|
|
boot.initrd.kernelModules = ["pinctrl_tigerlake"];
|
|
# Patch the `udev` rules shipping with `iio-sensor-proxy` according to:
|
|
# https://github.com/FrameworkComputer/linux-docs/blob/main/framework12/Ubuntu-25-04-accel-ubuntu25.04.md
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
iio-sensor-proxy = prev.iio-sensor-proxy.overrideAttrs (old: {
|
|
postInstall = ''
|
|
${old.postInstall or ""}
|
|
sed -i 's/.*iio-buffer-accel/#&/' $out/lib/udev/rules.d/80-iio-sensor-proxy.rules
|
|
'';
|
|
});
|
|
})
|
|
];
|
|
hardware.enableRedistributableFirmware = true;
|
|
environment.systemPackages = [
|
|
pkgs.framework-tool
|
|
];
|
|
users.groups.touchscreen = {};
|
|
services.udev.extraRules = ''
|
|
KERNEL=="event*", ATTRS{name}=="ILIT2901:00 222A:5539", SYMLINK+="touchscreen", MODE="0660", GROUP="touchscreen"
|
|
'';
|
|
};
|
|
}
|