stockholm/makefu/2configs/hw/stk1160.nix

13 lines
227 B
Nix
Raw Normal View History

2018-01-28 13:16:11 +00:00
{ pkgs, lib, ... }:
{
2018-08-06 15:50:10 +00:00
boot.kernelPatches = lib.singleton {
name = "enable-stk1160";
patch = null;
extraConfig = ''
MEDIA_ANALOG_TV_SUPPORT y
VIDEO_STK1160_COMMON m
VIDEO_STK1160 m
'';
};
}