Add Mopidy to kernighan

This commit is contained in:
Trevor Vallender 2023-07-07 19:41:32 +01:00
parent 8931450834
commit 850cbe95d4
2 changed files with 13 additions and 0 deletions

View File

@ -7,6 +7,7 @@
../shared/shared-configuration.nix
./kernighan-hardware.nix
./services/nginx.nix
./services/mopidy.nix
];
networking = {

View File

@ -0,0 +1,12 @@
{ config, pkgs, inputs, ... }:
{
services.mopidy = {
enable = true;
extensionPackages = with pkgs; [
mopidy-spotify
mopidy-mpd
];
}