blob: cd4a4ec0e0ba7aebce614bfafb92fc9b877136c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# nixos-config - My current NixOS configuration
#
# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of my nixos-config.
#
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
{
config,
lib,
pkgs,
...
}: let
cfg = config.soispha.services.mpd.mpc;
in {
options.soispha.services.mpd.mpc = {
enable = lib.mkEnableOption "mpc with extensions";
beetsPkg = lib.mkOption {
type = lib.types.package;
description = "The package to use, when calling `beet`";
};
};
config = lib.mkIf cfg.enable {
home-manager.users.soispha.home.packages = [
pkgs.mpp # Wrapper around `mpc` that allows the usage of `mpc-{beetsrm,lyrics,searchadd}` (below) without the `-`
# Removes the currently playing song from the disk and storage
(pkgs.mpp-beetrm.override {
beets = cfg.beetsPkg;
})
# Works like normal `mpc searchadd` but uses the `beets` query syntax
(pkgs.mpp-searchadd.override {
beets = cfg.beetsPkg;
})
# Displays the lyrics of the currently playing song
pkgs.mpp-lyrics
];
};
}
|