Skip to content

Commit

Permalink
Add Nix users section
Browse files Browse the repository at this point in the history
  • Loading branch information
sestrella committed Nov 26, 2024
1 parent 6d30263 commit 13c0ea9
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,41 @@ list of all tasks running on ECS.

## Installation

<details>
<summary>Nix users</summary>

### devenv

Add the project input into the `devenv.yaml` file:

```yml
inputs:
iecs:
url: github:sestrella/iecs
overlays:
- default
...
```

To install the binary, add it to the `packages` section in the `devenv.nix`
file:

```nix
{ pkgs, lib, config, inputs, ... }:
{
packages = [
pkgs.iecs
...
];
}
```

</details>

<details>
<summary>Non-Nix users</summary>

Clone the repository:

```
Expand All @@ -39,6 +74,8 @@ cp iecs ~/.local/bin/iecs
> Check that the path where the binary is copied exists in the `PATH`
> environment variable.
</details>

## References

- https://aws.github.io/aws-sdk-go-v2/docs/getting-started/
Expand Down

0 comments on commit 13c0ea9

Please sign in to comment.