misc: Add everything

This commit is contained in:
2021-07-29 22:21:51 +02:00
parent 8d3efe0058
commit 226c8bb781
41 changed files with 10140 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
mpdevil
mopidy mopidy-mpd mopidy-funkwhale
];
# TODO
services.mopidy = {
enable = true;
configuration = ''
[funkwhale]
enabled = true
url = https://audio.polynom.me
client_id =
client_secret =
cache_duration = 600
'';
extensionPackages = with pkgs; [
mopidy-mpd mopidy-funkwhale
];
};
}