Skip to content

Commit

Permalink
chore: accurate fixme's
Browse files Browse the repository at this point in the history
  • Loading branch information
shivaraj-bh committed Feb 14, 2025
1 parent 7b5d728 commit c5d73a3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions nix/lib.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
serviceModule = { config, name, ... }: {
options = {
enable = lib.mkEnableOption "Enable the ${service}.<name> 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}.<name>` 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
Expand All @@ -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;
Expand Down

0 comments on commit c5d73a3

Please sign in to comment.