16 lines
204 B
Nix
16 lines
204 B
Nix
{
|
|
inputs,
|
|
self,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.nix-topology.flakeModule
|
|
];
|
|
perSystem = _: {
|
|
topology.modules = [
|
|
{
|
|
inherit (self) nixosConfigurations;
|
|
}
|
|
];
|
|
};
|
|
}
|