blob: c3d07d5fe11cbeeb7970ece7f6a20847fd46f20a (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ config, pkgs, ... }:
with import <stockholm/lib>;
{
# http://seclists.org/oss-sec/2017/q1/471
boot.extraModprobeConfig = ''
install dccp /run/current-system/sw/bin/false
'';
boot.kernelPackages = pkgs.linuxPackages_latest;
}
|