refactor(flake): move flake modules into separate subdirectories

Also put `outputs` before `inputs` in `flake.nix` (readability)
This commit is contained in:
reo101 2024-08-01 13:26:56 +03:00
parent 236948cc2a
commit db88731eba
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
6 changed files with 60 additions and 61 deletions

View file

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