nix-flake/modules/hardware/misc/cpu-hotplug.nix
Satria cdf5828fc8
All checks were successful
NixOS Rebuild / rebuild (push) Successful in 9s
cpu hotplug
2026-03-15 10:53:33 +07:00

5 lines
No EOL
139 B
Nix

{ ... }: {
services.udev.extraRules = ''
SUBSYSTEM=="cpu", ACTION=="add", TEST=="online", ATTR{online}=="0", ATTR{online}="1"
'';
}