From c5e4cef0227ed9c07fdd31c96021dddcf3d83f76 Mon Sep 17 00:00:00 2001 From: Madeleine Sydney Date: Mon, 13 Jan 2025 01:51:59 -0700 Subject: [PATCH] tidy: Remove misplaced Nix module --- users/crumb/mpdscribble.nix | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 users/crumb/mpdscribble.nix diff --git a/users/crumb/mpdscribble.nix b/users/crumb/mpdscribble.nix deleted file mode 100644 index 24d808b..0000000 --- a/users/crumb/mpdscribble.nix +++ /dev/null @@ -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 { - }; -}