nixos-config/2configs/hw/stk1160.nix

13 lines
227 B
Nix
Raw Normal View History

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