feat: MPD

This commit is contained in:
Madeleine Sydney
2025-01-02 01:16:18 -07:00
parent 00402bdb93
commit d336291ac9
5 changed files with 131 additions and 17 deletions

View File

@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.services.mpdscribble;
in {
options = {
services.mpdscribble = {
enable = mkEnableOption "the mpdscribble service";
};
};
config = mkIf cfg.enable {
};
}