dots/modules/nixos/features/external-speakers.nix
2025-07-11 16:57:21 +10:00

17 lines
279 B
Nix

{
config,
lib,
...
}:
let
feature = "external-speakers";
in
{
config = lib.mkIf config.${feature}.enable {
boot.extraModprobeConfig = ''
options snd_hda_intel power_save=0
'';
};
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";
}