Set up vdpau.

This commit is contained in:
Tom Alexander
2025-02-08 16:06:57 -05:00
parent 24d83e95a5
commit 502e18fdec
4 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
config = lib.mkMerge [
{
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"
];
}
];
}