m 2 hw/stk1160: init

This commit is contained in:
makefu 2017-04-24 11:18:37 +02:00
parent 01e2f49b76
commit 96a49430c1
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 16 additions and 0 deletions

View File

@ -61,6 +61,7 @@ with import <stockholm/lib>;
# hardware specifics are in here
../2configs/hw/tp-x230.nix
../2configs/hw/rtl8812au.nix
../2configs/hw/stk1160.nix
# mount points
../2configs/fs/sda-crypto-root-home.nix

View File

@ -0,0 +1,15 @@
{ pkgs, ... }:
{
# TODO: un-pin linuxPackages somehow
boot.kernelPackages = builtins.trace "Warning: overriding kernel Packages with 4.9" pkgs.linuxPackages_4_9;
nixpkgs.config.packageOverrides = pkgs: {
linux_4_9 = pkgs.linux_4_9.override {
extraConfig = ''
MEDIA_ANALOG_TV_SUPPORT y
VIDEO_STK1160_COMMON m
VIDEO_STK1160_AC97 y
VIDEO_STK1160 m
'';
};
};
}