summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/modules/config/pulseaudio.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix
index 57942656aecf..c4991996437b 100644
--- a/nixos/modules/config/pulseaudio.nix
+++ b/nixos/modules/config/pulseaudio.nix
@@ -87,7 +87,8 @@ in {
hardware.pulseaudio = {
enable = mkOption {
type = types.bool;
- default = true;
+ default = config.sound.enable;
+ defaultText = "config.sound.enable";
description = ''
Whether to enable the PulseAudio sound server.
'';