blob: 956e6a995131bb57229d6722afee651ffef2165a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ config, lib, pkgs, ... }:
with lib;
let
spotifyd = pkgs.runCommand "spotifyd-0.0.0" {} "mkdir $out";
in
{
services.spotifyd.enable = true;
services.spotifyd.package = spotifyd;
test = ''
echo >&2 "checking spotifyd service in ~/Library/LaunchAgents"
grep "org.nixos.spotifyd" ${config.out}/user/Library/LaunchAgents/org.nixos.spotifyd.plist
grep "${spotifyd}/bin/spotifyd" ${config.out}/user/Library/LaunchAgents/org.nixos.spotifyd.plist
'';
}
|