mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
3c18113bd7
Allow passing arguments to the MPD command line. Currently the only interesting one is `--verbose`.
26 lines
566 B
Nix
26 lines
566 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
services.mpd = {
|
|
enable = true;
|
|
extraArgs = [ "--verbose" ];
|
|
};
|
|
|
|
xdg.userDirs.enable = true;
|
|
|
|
home.stateVersion = "22.11";
|
|
|
|
test.stubs.mpd = { };
|
|
|
|
nmt.script = ''
|
|
serviceFile=$(normalizeStorePaths home-files/.config/systemd/user/mpd.service)
|
|
assertFileContent "$serviceFile" ${./basic-configuration.service}
|
|
|
|
confFile=$(grep -o \
|
|
'/nix/store/.*-mpd.conf' \
|
|
$TESTED/home-files/.config/systemd/user/mpd.service)
|
|
assertFileContent "$confFile" ${./xdg-music-dir.conf}
|
|
'';
|
|
}
|