From eca02160f79fc5c422d6c3ddda6462fe12b07477 Mon Sep 17 00:00:00 2001 From: Soispha Date: Sat, 24 Feb 2024 11:08:07 +0100 Subject: fix(hm/pkgs): Readd man pages for `mpc-cli` --- hm/soispha/pkgs/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'hm/soispha') diff --git a/hm/soispha/pkgs/default.nix b/hm/soispha/pkgs/default.nix index e811ac37..4aa5a48c 100644 --- a/hm/soispha/pkgs/default.nix +++ b/hm/soispha/pkgs/default.nix @@ -6,6 +6,13 @@ ... }: with pkgs; let + onlyShare = drv: + runCommand "${drv.name}-only-share" {} '' + mkdir -p $out + ln -s ${drv}/share $out/share + ''; + mpc-cli-man = onlyShare mpc-cli; + shell-scripts = (import ./scripts.nix) {inherit pkgs lib sysLib config;}; Gui = { @@ -89,7 +96,7 @@ with pkgs; let Listen = [ pulseaudio # set the volume with pactl ncmpc # mpd player client - # mpc-cli # a cli mpd client (added via a wrapper script) + mpc-cli-man # a cli mpd client (added via a wrapper script) ]; }; -- cgit 1.4.1