From c5d73a32bea7deca6599557733887d9ea20e5055 Mon Sep 17 00:00:00 2001 From: shivaraj-bh Date: Fri, 14 Feb 2025 14:14:13 +0530 Subject: [PATCH] chore: accurate fixme's --- nix/lib.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/nix/lib.nix b/nix/lib.nix index 136ec5e..90f7cd3 100644 --- a/nix/lib.nix +++ b/nix/lib.nix @@ -16,13 +16,13 @@ serviceModule = { config, name, ... }: { options = { enable = lib.mkEnableOption "Enable the ${service}. service"; - # FIXME: process-compose option + # FIXME: `multiService` lib should be devoid of process-compose specific options dataDir = lib.mkOption { type = lib.types.str; default = "./data/${name}"; description = "The directory where all data for `${service}.` is stored"; }; - # FIXME: process-compose option + # FIXME: `multiService` lib should be devoid of process-compose specific options namespace = lib.mkOption { description = '' Namespace for the ${service} service @@ -31,8 +31,7 @@ type = lib.types.str; }; outputs = { - # FIXME: Need better distinction for process-manager specific options. - # I also don't think this option should be under `outputs`. + # FIXME: `multiService` lib should be devoid of process-compose specific options defaultProcessSettings = lib.mkOption { type = lib.types.deferredModule; internal = true;