mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-01 08:39:54 +03:00
12 lines
336 B
Markdown
12 lines
336 B
Markdown
# Overriding age binary {#overriding-age-binary}
|
|
|
|
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.rage}/bin/rage"; })
|
|
];
|
|
}
|
|
```
|