about summary refs log tree commit diff
path: root/users/glittershark/system/system/modules/sound.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/glittershark/system/system/modules/sound.nix')
-rw-r--r--users/glittershark/system/system/modules/sound.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/users/glittershark/system/system/modules/sound.nix b/users/glittershark/system/system/modules/sound.nix
deleted file mode 100644
index 0d5ce3e318..0000000000
--- a/users/glittershark/system/system/modules/sound.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ config, lib, pkgs, ... }:
-{
-  # Enable sound.
-  sound.enable = true;
-  hardware.pulseaudio.enable = true;
-  nixpkgs.config.pulseaudio = true;
-
-  environment.systemPackages = with pkgs; [
-    pulseaudio-ctl
-    paprefs
-    pasystray
-    pavucontrol
-  ];
-}