Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion hosts/ctvp.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ modulesPath, ... }:
{ modulesPath, pkgs, ... }:
{
system.stateVersion = "24.05";
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
Expand All @@ -13,4 +13,15 @@
security.sudo.wheelNeedsPassword = false;
networking.firewall.enable = false;

boot.extraModprobeConfig = ''
# Mitigate CVE-2026-43284 CVE-2026-43500 https://dirtyfrag.io
# https://github.com/V4bel/dirtyfrag
install esp4 ${pkgs.coreutils}/bin/false
install esp6 ${pkgs.coreutils}/bin/false
install rxrpc ${pkgs.coreutils}/bin/false

# Mitigate CVE-2026-31431 https://copy.fail
# https://github.com/theori-io/copy-fail-CVE-2026-31431
Comment thread
Misaka13514 marked this conversation as resolved.
install algif_aead ${pkgs.coreutils}/bin/false
'';
}