16 lines
233 B
Nix
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 {
|
|
};
|
|
}
|