rix101/nix/agenix.nix

16 lines
222 B
Nix
Raw Normal View History

{ lib, config, self, inputs, ... }:
{
imports = [
inputs.agenix-rekey.flakeModule
];
perSystem = {
agenix-rekey = {
nodes = {
inherit (self.nixosConfigurations) jeeves;
};
};
};
}