first commit

This commit is contained in:
2024-12-16 15:41:50 +01:00
commit d27b938371
4 changed files with 69 additions and 0 deletions

16
custom-kernel.nix Normal file
View File

@@ -0,0 +1,16 @@
{ config, pkgs, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_6_6;
boot.kernelPatches = [
{
name = "enable-ov5693";
patch = null;
extraConfig = ''
MEDIA_SUPPORT y
VIDEO_DEV y
VIDEO_CAMERA_SENSOR y
VIDEO_OV5693 y
'';
}
];
}