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