diff --git a/modules/examples/lnl.nix b/modules/examples/lnl.nix index 99ee65c..5d1bcb4 100644 --- a/modules/examples/lnl.nix +++ b/modules/examples/lnl.nix @@ -226,6 +226,22 @@ direnv reload } + xi() { + curl -F 'f:1=<-' ix.io + } + + install_name_tool() { + ${pkgs.darwin.cctools}/bin/install_name_tool "$@" + } + + otool() { + ${pkgs.darwin.cctools}/bin/otool "$@" + } + + pkgs() { + nix repl ''${@:-} + } + aarch-build() { nix-build --option system aarch64-linux --store ssh-ng://aarch1 "$@" } @@ -242,22 +258,6 @@ nix-build --option system x86_64-linux --store ssh-ng://nixos1 "$@" } - install_name_tool() { - ${pkgs.darwin.cctools}/bin/install_name_tool "$@" - } - - otool() { - ${pkgs.darwin.cctools}/bin/otool "$@" - } - - darwin() { - nix repl ''${@:-} - } - - pkgs() { - nix repl ''${@:-} - } - hydra-bad-machines() { local url=https://hydra.nixos.org curl -fsSL -H 'Accept: application/json' $url/queue-runner-status | jq -r '.machines | to_entries | .[] | select(.value.consecutiveFailures>0) | .key'