tidy: Remove misplaced Nix module

This commit is contained in:
Madeleine Sydney
2025-01-13 01:51:59 -07:00
parent 4761303e6d
commit c5e4cef022

View File

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