NASA Satellite Data Shows Uneven Subsidence Rates Across Mexico City
📰 Original title: Mexico City Is Sinking. A Powerful NASA Satellite Just Revealed How Fast
🤖 IA: It's clickbait ⚠️
👥 Usuarios: It's clickbait ⚠️
Alberto Álvarez permanece grave tras un accidente en su ganadería
📰 Título original: El torero Alberto Álvarez sufre un grave accidente al caer en una trituradora de su ganadería
🤖 IA: Es clickbait ⚠️
👥 Usuarios: Es clickbait ⚠️
#su...
."They’re no longer airworthy, just piece-worthy!" 🤣🤣🤣
From https://t.me/pravdaGerashchenko_en
FOUR #Russian aircraft struck at #Shagol airfield, #Chelyabinsk region of #Russia, 1700 km from #Ukrainian state border.
#1st Center of Unmanned Systems Forces carried out the strikes on April 25,2026.
▪️Two #Su_57 aircraft
▪️One #Su_34 aircraft
▪️One #Su of undefined modification.
This is super-significant because these bombers are critically important for #Russian strike potential.
While #NixOS should not be affected by #CopyFail as it uses recent kernels, here are additional fixes you can apply:
Disabling setuid does not mitigate it, but reduces the attack surfaces overall significantly.
Instead of #sudo, #su, #pkexec and other #setuid binaries you can use #run0 or a dedicated root account.
I have disabled setuid for a bunch of binaries I don't need, they still work when ran as root, with run0 or #sudo-rs.
```nix
boot.blacklistedKernelModules = [
"algif_aead"
];
security.sudo.enable = false;
security.wrappers = {
su.enable = false;
pkexec.enable = false;
# example setuid binary
chsh = {
source = "${pkgs.shadow}/bin/chsh";
setuid = lib.mkForce false;
owner = "root";
group = "root";
};
};
```