Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
fmaste committed Aug 8, 2022
1 parent 8630647 commit 76213a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions nix/workbench/docker.nix
Expand Up @@ -27,12 +27,12 @@ let
pkgs.runCommand "workbench-profile-outputs-${profileNix.name}-dockerd" {}
''
mkdir $out
cp ${mkSupervisorConf profileNix} $out/docker.conf
cp ${mkBackendConf profileNix} $out/docker.conf
'';

## Backend-specific Nix bits:
## mkSupervisorConf :: Profile -> SupervisorConf
mkSupervisorConf =
## mkBackendConf :: Profile -> SupervisorConf
mkBackendConf =
profile:
pkgs.callPackage ./docker-conf.nix
{ inherit (profile) node-services generator-service;
Expand Down
6 changes: 3 additions & 3 deletions nix/workbench/supervisor.nix
Expand Up @@ -27,12 +27,12 @@ let
pkgs.runCommand "workbench-profile-outputs-${profileNix.name}-supervisord" {}
''
mkdir $out
cp ${mkSupervisorConf profileNix} $out/supervisor.conf
cp ${mkBackendConf profileNix} $out/supervisor.conf
'';

## Backend-specific Nix bits:
## mkSupervisorConf :: Profile -> SupervisorConf
mkSupervisorConf =
## mkBackendConf :: Profile -> SupervisorConf
mkBackendConf =
profile:
pkgs.callPackage ./supervisor-conf.nix
{ inherit (profile) node-services generator-service;
Expand Down

0 comments on commit 76213a5

Please sign in to comment.