diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-09-13 12:25:45 +0200 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-09-13 12:25:45 +0200 |
commit | 5485984e05aebde22819adebfbd5ad51475a6c21 (patch) | |
tree | d3a8306755713e488ef23be507eafa3b0c574526 /Makefile | |
parent | b1641d1af92eca6e475ea76aaed21a5dab0df185 (diff) |
remove redis and circus
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,10 +3,10 @@ CONFIG = ./config.nix entrypoint: nix-build -A entrypoint \ - --arg baseConfig '(import ${CONFIG})' + --arg config '(import ${CONFIG})' install: - $$(nix-build -A install --arg baseConfig '(import ${CONFIG})') + $$(nix-build -A install --arg config '(import ${CONFIG})') test: $$(nix-build --no-out-link -A pkgs.bash)/bin/bash srv-dev-env.sh \ @@ -18,5 +18,5 @@ srv.dev-shell: --command "cd srv/src; return" srv.shell: - nix-shell -A srv.shellWithBuild --arg baseConfig '(import ${CONFIG})' \ + nix-shell -A srv.shellWithBuild --arg config '(import ${CONFIG})' \ --command 'cd srv/src; return' |