Speakers popping, how to make power save options permanent?

I’ve found modprobe.d inconsistent across distros; setting it as a boot option works fine everywhere (including F41):

snd_hda_intel.power_save='0'

This might apply it as a boot option easy:

sudo grubby --update-kernel='ALL' --args='snd_hda_intel.power_save=0'

But I usually manually toss it under GRUB’s GRUB_CMDLINE_LINUX:

sudo -e '/etc/default/grub' && sudo grub2-mkconfig -o '/boot/grub2/grub.cfg'