summary refs log tree commit diff stats
path: root/system/modules/hardware/audio.nix
diff options
context:
space:
mode:
Diffstat (limited to 'system/modules/hardware/audio.nix')
-rw-r--r--system/modules/hardware/audio.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/system/modules/hardware/audio.nix b/system/modules/hardware/audio.nix
deleted file mode 100644
index ed956919..00000000
--- a/system/modules/hardware/audio.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ config, pkgs, ... }:
-
-{ hardware.pulseaudio = {
-    enable = true;
-    support32Bit = true;
-    daemon.config = {
-      flat-volumes = "no";
-    };
-    package = if config.hardware.bluetooth.enable
-      then pkgs.pulseaudioFull
-      else pkgs.pulseaudio;
-  };
-
-  sound.enable = true;
-
-  environment.systemPackages = with pkgs; [
-    pamixer
-    pavucontrol
-  ];
-}