summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2022-09-13 12:25:45 +0200
committerBrian Picciano <mediocregopher@gmail.com>2022-09-13 12:25:45 +0200
commit5485984e05aebde22819adebfbd5ad51475a6c21 (patch)
treed3a8306755713e488ef23be507eafa3b0c574526 /Makefile
parentb1641d1af92eca6e475ea76aaed21a5dab0df185 (diff)
remove redis and circus
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 72ff403..50795e3 100644
--- a/Makefile
+++ b/Makefile
@@ -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'