mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-22 09:40:47 +03:00
657789137c
* use mmdoc * add github pages action to auto publish * do not edit README for now, will follow up with a commit directs people to the doc site
12 lines
344 B
Markdown
12 lines
344 B
Markdown
# 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:
|
|
|
|
```nix
|
|
{pkgs,agenix,...}:{
|
|
environment.systemPackages = [
|
|
(agenix.packages.x86_64-linux.default.override { ageBin = "${pkgs.age}/bin/age"; })
|
|
];
|
|
}
|
|
```
|