mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-22 17:50:48 +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
344 B
344 B
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:
{pkgs,agenix,...}:{
environment.systemPackages = [
(agenix.packages.x86_64-linux.default.override { ageBin = "${pkgs.age}/bin/age"; })
];
}