feat: add mpd for beets' play plugin

This commit is contained in:
Nydragon 2024-12-19 23:15:34 +01:00
parent 54d13d037e
commit 6bd0a92f95
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
3 changed files with 69 additions and 3 deletions

View file

@ -1,5 +1,5 @@
{ {
description = "Nydragon's NixOS configuration"; description = "Nydragon's system configuration";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
@ -56,6 +56,7 @@
{ pkgs, inputs', ... }: { pkgs, inputs', ... }:
{ {
formatter = pkgs.nixfmt-rfc-style; formatter = pkgs.nixfmt-rfc-style;
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
pre-commit pre-commit

View file

@ -1,6 +1,13 @@
{ pkgs, lib, ... }: {
pkgs,
lib,
osConfig,
config,
...
}:
let let
inherit (lib) concatStringsSep listToAttrs; inherit (lib) concatStringsSep listToAttrs;
inherit (lib.my) getExe;
plugins = [ plugins = [
"convert" "convert"
"chroma" "chroma"
@ -14,10 +21,46 @@ let
"missing" "missing"
"unimported" "unimported"
"badfiles" "badfiles"
"embedart"
"play"
]; ];
mkConf =
a:
let
mkGroup = name: values: ''
${name} {
${lib.concatStringsSep "\n\t" values}
}'';
stringify = lib.mapAttrsToList (
name: value:
if lib.isAttrs value then
mkGroup name (stringify value)
else if (lib.isInt value || lib.isFloat value) then
''${name} "${toString value}"''
else
''${name} "${value}"''
);
in
concatStringsSep "\n" (stringify a);
mpdSocket = "/run/user/${toString osConfig.users.users.${config.home.username}.uid}/mpd/socket";
in in
{ {
config = { config = {
services.mpd = {
enable = true;
extraConfig = mkConf {
auto_update = "yes";
log_file = "syslog";
bind_to_address = mpdSocket;
audio_output = {
type = "pipewire";
name = "PipeWire Sound Server";
};
};
};
programs.beets = { programs.beets = {
package = pkgs.beets.override { package = pkgs.beets.override {
pluginOverrides = listToAttrs ( pluginOverrides = listToAttrs (
@ -36,6 +79,26 @@ in
format = "flac"; format = "flac";
never_convert_lossy_files = "yes"; never_convert_lossy_files = "yes";
}; };
play = {
command =
let
mpc = "${getExe pkgs.mpc} --host=\"${mpdSocket}\"";
ncmpcpp = getExe pkgs.ncmpcpp;
command = pkgs.writers.writeFishBin "play-command" ''
set playlist "$argv[1]";
${mpc} clear;
${mpc} load "$playlist";
rm "$playlist";
${mpc} play;
${ncmpcpp} $args;
'';
in
"${command}/bin/play-command";
};
embedart = {
maxwidth = 500;
};
fetchart = { fetchart = {
auto = true; auto = true;
cover_format = "jpg"; cover_format = "jpg";
@ -67,7 +130,8 @@ in
languages = "en"; languages = "en";
}; };
item_fields = { item_fields = {
disc_and_track = "u'%02i.%02i' % (disc, track) if disctotal > 1 else u'%02i' % (track)"; disc_and_track = # python
"u'%02i.%02i' % (disc, track) if disctotal > 1 else u'%02i' % (track)";
primary_albumartist = # python primary_albumartist = # python
'' ''
if albumartist.lower().strip().startswith(albumartists[0].lower().strip()): if albumartist.lower().strip().startswith(albumartists[0].lower().strip()):

View file

@ -7,6 +7,7 @@
"wheel" "wheel"
]; ];
shell = pkgs.fish; shell = pkgs.fish;
uid = 1000;
}; };
programs.fish.enable = true; programs.fish.enable = true;
} }