snowflake/modules/topology.nix

17 lines
204 B
Nix
Raw Normal View History

{
inputs,
self,
...
}: {
imports = [
inputs.nix-topology.flakeModule
];
perSystem = _: {
topology.modules = [
{
inherit (self) nixosConfigurations;
}
];
};
}