rix101/nix/topology.nix
reo101 eeae48b5d8
refactor(flake): extract more stuff in flake modules
`pkgs` redefinition (with overlays)
`nix-topology` setup
`agenix-rekey` setup
2024-07-19 12:35:01 +03:00

23 lines
303 B
Nix

{ lib, config, self, inputs, ... }:
let
modules = [
{
}
];
in
{
imports = [
inputs.nix-topology.flakeModule
];
perSystem = {
topology = {
inherit modules;
nixosConfigurations = {
inherit (self.nixosConfigurations)
jeeves;
};
};
};
}