From 1cd6e805ba43c128835ba94e9c0c023d74a0d5bb Mon Sep 17 00:00:00 2001 From: winston Date: Mon, 17 Apr 2023 06:43:01 +0200 Subject: [PATCH] build: fix justfile env var --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index b5b31e3..f1108d9 100644 --- a/justfile +++ b/justfile @@ -11,7 +11,7 @@ check: if [[ -x "./result/sw/bin/darwin-rebuild" ]]; then ./result/sw/bin/darwin-rebuild check --flake . else - nix build .\#darwinConfigurations.${HOST}.system + nix build .\#darwinConfigurations.`hostname`.system ./result/sw/bin/darwin-rebuild check --flake . fi @@ -28,7 +28,7 @@ switch: secret-stage && secret-unstage if [[ -x "./result/sw/bin/darwin-rebuild" ]]; then ./result/sw/bin/darwin-rebuild switch --flake . else - nix build .\#darwinConfigurations.${HOST}.system + nix build .\#darwinConfigurations.`hostname`.system ./result/sw/bin/darwin-rebuild switch --flake . fi