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