stockholm/makefu/2configs/hw/stk1160.nix
2018-08-06 17:50:10 +02:00

13 lines
227 B
Nix

{ pkgs, lib, ... }:
{
boot.kernelPatches = lib.singleton {
name = "enable-stk1160";
patch = null;
extraConfig = ''
MEDIA_ANALOG_TV_SUPPORT y
VIDEO_STK1160_COMMON m
VIDEO_STK1160 m
'';
};
}