mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-01 08:39:54 +03:00
336 B
336 B
Overriding age binary
The agenix CLI uses age
by default as its age implemenation, you
can use the rage
implementation with Flakes like this:
{pkgs,agenix,...}:{
environment.systemPackages = [
(agenix.packages.x86_64-linux.default.override { ageBin = "${pkgs.rage}/bin/rage"; })
];
}