13 lines
186 B
Nix
13 lines
186 B
Nix
{ lib, config, self, inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.agenix-rekey.flakeModule
|
|
];
|
|
|
|
perSystem = {
|
|
agenix-rekey = {
|
|
nodes = self.nixosConfigurations;
|
|
};
|
|
};
|
|
}
|