2eafb8192e
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
22 lines
519 B
Nix
22 lines
519 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
services.mpd.enable = true;
|
|
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}
|
|
'';
|
|
}
|