diff options
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' |