mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-05-20 21:41:12 +02:00
21 lines
244 B
Nix
21 lines
244 B
Nix
{ ... }:
|
|
|
|
{
|
|
boot.blacklistedKernelModules = [
|
|
# copy.fail
|
|
"af_alg"
|
|
"algif_aead"
|
|
"algif_hash"
|
|
"algif_rng"
|
|
"algif_skcipher"
|
|
|
|
# dirtyfrag / Fragnesia
|
|
"esp4"
|
|
"esp6"
|
|
"rxrpc"
|
|
|
|
# PinTheft
|
|
"rds"
|
|
];
|
|
}
|