summaryrefslogtreecommitdiffstats
path: root/mpd.nix
diff options
context:
space:
mode:
authorSkullheadx <admonty1@protonmail.com>2026-04-25 21:34:06 -0400
committerSkullheadx <admonty1@protonmail.com>2026-04-25 21:34:06 -0400
commitf351ef00f77e5ea4d082a7eff86d7845dad7d9e0 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /mpd.nix
parentbluetooth (diff)
downloadnixos-f351ef00f77e5ea4d082a7eff86d7845dad7d9e0.tar.gz
nixos-f351ef00f77e5ea4d082a7eff86d7845dad7d9e0.tar.bz2
nixos-f351ef00f77e5ea4d082a7eff86d7845dad7d9e0.zip
remove all
Diffstat (limited to 'mpd.nix')
-rw-r--r--mpd.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/mpd.nix b/mpd.nix
deleted file mode 100644
index 3866598..0000000
--- a/mpd.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ config, pkgs, ... }:
-{
- services.mpd = {
- enable = true;
- musicDirectory = "${config.home.homeDirectory}/Music";
- playlistDirectory = "${config.home.homeDirectory}/.playlists";
- # mixer_type "none" # maybe mess around with this some time, it will turn off volume in rmpc, but apparently it will make the sound more quality for music
- extraConfig = ''
- auto_update "yes"
- audio_output {
- type "pulse"
- name "PipeWire Output"
- }
- '';
- };
-}