summaryrefslogtreecommitdiffstats
path: root/modules/music/mpd.nix
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2024-01-07 12:00:08 -0500
committerJon Santmyer <jon@jonsantmyer.com>2024-01-07 12:00:08 -0500
commit7b79203f54853733d4fae88943829d0e24e6e49f (patch)
treea352d199fad7453332b9308a6295164157729f27 /modules/music/mpd.nix
parent184bd30bcb303104a4981ac742d8f8961c5477e7 (diff)
downloadnix-config-7b79203f54853733d4fae88943829d0e24e6e49f.tar.gz
nix-config-7b79203f54853733d4fae88943829d0e24e6e49f.tar.bz2
nix-config-7b79203f54853733d4fae88943829d0e24e6e49f.zip
massive overhaul
Diffstat (limited to 'modules/music/mpd.nix')
-rw-r--r--modules/music/mpd.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/modules/music/mpd.nix b/modules/music/mpd.nix
deleted file mode 100644
index 8ee1f1b..0000000
--- a/modules/music/mpd.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ config, lib, pkgs, user, ... }:
-with lib;
-let
-
-in
-{
- options = {
- mpd = {
- enable = mkOption {
- type = types.bool;
- default = false;
- };
- };
- };
-
- config.home-manager.users.${user} = mkIf (config.mpd.enable)
- {
- services.mpd = {
- enable = true;
- musicDirectory = "/home/${user}/mus";
- extraConfig = ''
-audio_output {
- type "pipewire"
- name "Pipewire Output"
-}
- '';
- };
-
- home.packages = with pkgs; [
- mpc-cli
- ncmpcpp
- ];
- };
-}