diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-08-24 15:12:21 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-08-24 15:12:21 +0200 |
commit | 8fb52147fa0d3393ad7e3ea46c3f49ee79360550 (patch) | |
tree | 4322dbeba766d8d9ba9e7650fbf56f6ca7d48f91 | |
parent | modules/yambar: Drop (diff) | |
download | nixos-config-8fb52147fa0d3393ad7e3ea46c3f49ee79360550.zip |
build.sh: Default to current host, instead of `tiamat`
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh index de4d536c..69798ce8 100755 --- a/build.sh +++ b/build.sh @@ -10,7 +10,7 @@ # You should have received a copy of the License along with this program. # If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. -host="${1-tiamat}" +host="${1-$(hostname)}" [ "$#" -gt 0 ] && shift 1 root="$(git rev-parse --show-toplevel)" |