summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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'