From 51ad586a71998132d45e90d1861052dd7ccb589d Mon Sep 17 00:00:00 2001 From: Ruben Hoenle Date: Thu, 27 Mar 2025 13:53:02 +0100 Subject: [PATCH] chore(doc): update installation docs relates to #115 --- INSTALLATION.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/INSTALLATION.md b/INSTALLATION.md index 565eab7dd..72d06b8ec 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -68,6 +68,28 @@ sudo apt-get install stackit > If you can't install the `stackit` package due to an expired key, please go back to step `1` to import the latest public key. +#### Nix / NixOS + +The STACKIT CLI is available as a [Nix package](https://search.nixos.org/packages?channel=unstable&show=stackit-cli), and can be used via: + +```shell +nix-shell -p stackit-cli +``` + +#### Eget + +The STACKIT CLI binaries are available via our [GitHub releases](https://github.com/stackitcloud/stackit-cli/releases), you can install them from there using [Eget](https://github.com/zyedidia/eget). + +```toml +# ~/.eget.toml +["stackitcloud/stackit-cli"] +asset_filters=["stackit-cli_", "_linux_amd64.tar.gz"] +``` + +```shell +eget stackitcloud/stackit-cli +``` + #### Any distribution Alternatively, you can install via [Homebrew](https://brew.sh/) or refer to one of the installation methods below.