nix-config/home/rmpc.nix

25 lines
357 B
Nix
Raw Permalink Normal View History

{ config, pkgs, ... }:
2023-06-11 15:51:26 +02:00
2024-04-03 11:51:01 +02:00
let
inherit (config.xdg.userDirs) music;
2024-04-03 11:51:01 +02:00
musicDirectory = music;
2024-04-03 11:51:01 +02:00
in
2023-06-22 16:42:23 +02:00
{
home.packages = with pkgs; [ rmpc ];
services.mpd = {
enable = true;
2024-04-03 11:51:01 +02:00
inherit musicDirectory;
extraConfig = ''
audio_output {
type "pipewire"
name "PipeWire Sound Server"
}
2023-06-16 15:55:50 +02:00
auto_update "yes"
'';
2024-04-03 01:33:03 +02:00
};
}