aboutsummaryrefslogtreecommitdiffstats
path: root/modules/nixos/sils/sound.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/sils/sound.nix')
-rw-r--r--modules/nixos/sils/sound.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/modules/nixos/sils/sound.nix b/modules/nixos/sils/sound.nix
deleted file mode 100644
index 3ad26fb..0000000
--- a/modules/nixos/sils/sound.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- cfg = config.sils.sound;
-in {
- options.sils.sound.enable = lib.mkEnableOption "sound config";
- config = lib.mkIf cfg.enable {
- services.pipewire = {
- enable = true;
- alsa = {
- enable = true;
- support32Bit = true;
- };
- pulse.enable = true;
- jack.enable = true;
- };
- };
-}