framework: Add framework-laptop-kmod as default for NixOS >= 24.05

This commit is contained in:
Sebastian Sellmeier 2024-04-07 21:31:18 +02:00
parent 0335d1a093
commit f8e89e4e84
No known key found for this signature in database
GPG Key ID: 51E2BE0CCC826F98
2 changed files with 18 additions and 0 deletions

View File

@ -2,6 +2,7 @@
imports = [
../../../common/pc/laptop
../../../common/pc/laptop/ssd
../../kmod.nix
];
# Fix TRRS headphones missing a mic

17
framework/kmod.nix Normal file
View File

@ -0,0 +1,17 @@
{ config, lib, ... }:
{
options.hardware.framework.enableKmod = lib.mkEnableOption (lib.mdDoc
"Enable the community created Framework kernel module that allows interacting with the embedded controller from sysfs."
) // {
# Enable by default if on new enough version of NixOS
default = (lib.versionAtLeast (lib.versions.majorMinor lib.version) "24.05");
};
config = lib.mkIf config.hardware.framework.enableKmod {
boot.extraModulePackages = with config.boot.kernelPackages; [
framework-laptop-kmod
];
# https://github.com/DHowett/framework-laptop-kmod?tab=readme-ov-file#usage
boot.kernelModules = [ "cros_ec" "cros_ec_lpcs" ];
};
}