rix101/modules/flake/agenix/default.nix
reo101 db88731eba
refactor(flake): move flake modules into separate subdirectories
Also put `outputs` before `inputs` in `flake.nix` (readability)
2024-08-01 13:26:56 +03:00

13 lines
186 B
Nix

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