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