From 17c0f7124343359c9721c5269a9e4c341085d651 Mon Sep 17 00:00:00 2001 From: ob7 Date: Tue, 10 Dec 2024 21:12:38 -0900 Subject: [PATCH] docs: add NixOS installation instructions to README (#43) Add NixOS package installation section under a new "Package Managers" category in the installation instructions. This reflects tenere's recent addition to nixpkgs (NixOS/nixpkgs/pull/363556) --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 84faf13..97cbd5f 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,17 @@ You can download the pre-built binaries from the [release page](https://github.c ```shell cargo install tenere ``` +### 🗃️ System Package Managers + +#### ❄️ NixOS / Nix + +Tenere is available in nixpkgs and can be installed via configuration.nix: + +```nix +environment.systemPackages = with pkgs; [ + tenere +]; +``` ### ⚒️ Build from source