diff --git a/examples/service-containers-agnostic/constructors.nix b/examples/service-containers-agnostic/constructors.nix index 0cc4432..e6e1dd6 100644 --- a/examples/service-containers-agnostic/constructors.nix +++ b/examples/service-containers-agnostic/constructors.nix @@ -15,7 +15,7 @@ let }; in { - extendableSupervisord = import ./extendable-supervisord.nix { + extendableSupervisord = import ./extendable.nix { inherit stateDir; inherit (pkgs) stdenv; supervisordConstructorFun = constructors.extendableSupervisord; diff --git a/examples/service-containers-agnostic/extendable-supervisord.nix b/examples/service-containers-agnostic/extendable.nix similarity index 100% rename from examples/service-containers-agnostic/extendable-supervisord.nix rename to examples/service-containers-agnostic/extendable.nix diff --git a/examples/services-agnostic/constructors/constructors.nix b/examples/services-agnostic/constructors/constructors.nix index 9400ca6..5420d0c 100644 --- a/examples/services-agnostic/constructors/constructors.nix +++ b/examples/services-agnostic/constructors/constructors.nix @@ -31,7 +31,7 @@ in inherit (pkgs.pythonPackages) supervisor; }; - extendableSupervisord = import ./supervisord/extendable-supervisord.nix { + extendableSupervisord = import ./supervisord/extendable.nix { inherit createManagedProcess libDir runtimeDir logDir; inherit (pkgs) writeTextFile; inherit (pkgs.pythonPackages) supervisor; diff --git a/examples/services-agnostic/constructors/supervisord/extendable-supervisord.nix b/examples/services-agnostic/constructors/supervisord/extendable.nix similarity index 100% rename from examples/services-agnostic/constructors/supervisord/extendable-supervisord.nix rename to examples/services-agnostic/constructors/supervisord/extendable.nix