summaryrefslogtreecommitdiffstats
path: root/audio.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--audio.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/audio.nix b/audio.nix
index f146189..14323da 100644
--- a/audio.nix
+++ b/audio.nix
@@ -2,7 +2,8 @@
config,
pkgs,
...
-}: {
+}:
+{
services.pipewire = {
enable = true;
audio.enable = true;
@@ -32,7 +33,7 @@
systemd.user.services.mpd = {
description = "Music Player Daemon";
- wantedBy = ["default.target"];
+ wantedBy = [ "default.target" ];
serviceConfig = {
ExecStart = "${pkgs.mpd}/bin/mpd --no-daemon /home/andrew/.config/mpd/mpd.conf";
Restart = "on-failure";