diff options
author | tdback <tyler@tdback.net> | 2025-01-23 21:20:24 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-23 21:20:24 -0500 |
commit | ebd0ac7a3aa6c681b6317da24b72d64962913f79 (patch) | |
tree | e93bf069c70efc0ca5903ade55fba09cab6eeaf7 /users/tdback/modules/mpd | |
parent | 522ca13e808d4f38ca8422138d2f4092923fc12a (diff) |
Move display server back to xorg
Diffstat (limited to 'users/tdback/modules/mpd')
-rw-r--r-- | users/tdback/modules/mpd/default.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/users/tdback/modules/mpd/default.nix b/users/tdback/modules/mpd/default.nix index 374add8..5bf2396 100644 --- a/users/tdback/modules/mpd/default.nix +++ b/users/tdback/modules/mpd/default.nix @@ -3,10 +3,6 @@ services.mpd = { enable = true; package = pkgs.unstable.mpd; - network = { - listenAddress = "127.0.0.1"; - port = 6600; - }; musicDirectory = "~/media/music"; extraConfig = '' log_file "syslog" @@ -25,4 +21,7 @@ } ''; }; + + # Add mpc for controlling mpd. + home.packages = with pkgs.unstable; [ mpc-cli ]; } |