panacea/modules/audio.nix

78 lines
1.8 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, inputs, ... }:
2022-04-25 04:02:37 +02:00
with pkgs;
# HACK Replace youtube-dl with yt-dlp in mopidy-youtube
let
mopidy-youtube-yt_dlp = mopidy-youtube.overrideAttrs (old: rec {
propagatedBuildInputs = old.propagatedBuildInputs
++ [ python3.pkgs.yt-dlp ];
});
in {
2021-03-22 16:27:03 +01:00
# Configure pipewire as sound server
services.pipewire = {
enable = true;
2021-03-22 16:27:03 +01:00
alsa = {
enable = true;
2021-03-22 16:27:03 +01:00
support32Bit = true;
};
2021-03-22 16:27:03 +01:00
pulse.enable = true;
wireplumber.enable = true;
config.pipewire-pulse = let
defaultConf = lib.importJSON
"${inputs.nixpkgs}/nixos/modules/services/desktops/pipewire/daemon/pipewire-pulse.conf.json";
in lib.recursiveUpdate defaultConf {
"pulse.properties" = {
"server.address" = [ "unix:native" "tcp:127.0.0.1:4713" ];
};
};
};
2021-03-22 16:27:03 +01:00
security.rtkit.enable = true;
# Set up Mopidy
services.mopidy = {
enable = true;
2022-04-25 04:02:37 +02:00
extensionPackages =
[ mopidy-mpd mopidy-youtube-yt_dlp mopidy-somafm mopidy-local ];
configuration = ''
[audio]
mixer_volume =
output = pulsesink server=127.0.0.1
visualizer =
2020-11-01 12:27:56 +01:00
[local]
media_dir = /home/coolneng/Music
directories =
Album Artists local:directory?type=artist&role=albumartist
Albums local:directory?type=album
Artists local:directory?type=artist
Genres local:directory?type=genre
excluded_file_extensions =
.directory
.html
.jpeg
.jpg
.log
.nfo
.png
.txt
[mpd]
zeroconf = ""
[m3u]
playlists_dir = /home/coolneng/.config/mpd/playlists
base_dir = /home/coolneng/Music
2020-10-05 12:48:44 +02:00
[youtube]
2022-03-31 16:15:36 +02:00
allow_cache = true
2020-10-05 12:48:44 +02:00
search_results = 50
2022-04-25 04:02:37 +02:00
youtube_dl_package = yt_dlp
2020-11-17 01:26:37 +01:00
[somafm]
encoding = aac
quality = highest
'';
};
}