reo101
91f0deb3bc
Export all `./nix/` flake modules Modularize `configurations` on `machines` dir Also move `toposort` images to a single attrset binding
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;
|
|
};
|
|
};
|
|
}
|