aboutsummaryrefslogtreecommitdiff
path: root/nixos/.flake/home/services/mpd.org
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/.flake/home/services/mpd.org')
-rw-r--r--nixos/.flake/home/services/mpd.org21
1 files changed, 0 insertions, 21 deletions
diff --git a/nixos/.flake/home/services/mpd.org b/nixos/.flake/home/services/mpd.org
deleted file mode 100644
index b985b2a..0000000
--- a/nixos/.flake/home/services/mpd.org
+++ /dev/null
@@ -1,21 +0,0 @@
-#+title: MPD Configuration
-
-Set music directory and enable PipeWire output.
-#+begin_src nix :tangle ~/.flake/home/services/mpd.nix :mkdirp yes
- { config, pkgs, ... }:
-
- {
- services.mpd = {
- enable = true;
- musicDirectory = "~/Music";
- extraConfig = ''
- audio_output {
- type "pipewire"
- name "Pipewire"
- mixer_type "hardware"
- enabled "yes"
- }
- '';
- };
- }
-#+end_src