Skip to content

Commit

Permalink
Merge pull request #244 from kraem/fix/rage_to_age_docs
Browse files Browse the repository at this point in the history
fix: update docs for 5c1198a
  • Loading branch information
ryantm authored Feb 13, 2024
2 parents 417caa8 + 1f62cef commit 8cb01a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/overriding-age-binary.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Overriding age binary {#overriding-age-binary}

The agenix CLI uses `rage` by default as its age implemenation, you
can use the reference implementation `age` with Flakes like this:
The agenix CLI uses `age` by default as its age implemenation, you
can use the `rage` implementation with Flakes like this:

```nix
{pkgs,agenix,...}:{
environment.systemPackages = [
(agenix.packages.x86_64-linux.default.override { ageBin = "${pkgs.age}/bin/age"; })
(agenix.packages.x86_64-linux.default.override { ageBin = "${pkgs.rage}/bin/rage"; })
];
}
```

0 comments on commit 8cb01a0

Please sign in to comment.