diff options
author | Franck Cuny <franck@fcuny.net> | 2024-09-28 09:28:47 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-09-28 09:28:47 -0700 |
commit | 03bc767398b4339ad4e7dcf52061100ed3b33b85 (patch) | |
tree | fba75a2a066b74b0dc1094a99fe30b1e199244ef | |
parent | install pandoc (diff) | |
download | world-03bc767398b4339ad4e7dcf52061100ed3b33b85.tar.gz |
for some reason the `hostname` is busted on sequoia
-rw-r--r-- | justfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/justfile b/justfile index 5179ff1..0e67acd 100644 --- a/justfile +++ b/justfile @@ -8,11 +8,11 @@ update-deps: # build (and only build) the configuration for darwin build-darwin: - darwin-rebuild build --flake .# + darwin-rebuild build --flake .#$(hostname -s) # build and switch the configuration for darwin switch-darwin: - darwin-rebuild switch --flake .# + darwin-rebuild switch --flake .#$(hostname -s) # a simple check to ensure the nix configuration is OK test-nix: |