Files
sydnix/users/crumb/mpdscribble.nix
Madeleine Sydney d336291ac9 feat: MPD
2025-01-02 02:20:06 -07:00

16 lines
233 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let cfg = config.services.mpdscribble;
in {
options = {
services.mpdscribble = {
enable = mkEnableOption "the mpdscribble service";
};
};
config = mkIf cfg.enable {
};
}