13 lines
210 B
Nix
13 lines
210 B
Nix
{ inputs, self, ... }:
|
|
{
|
|
imports = [
|
|
inputs.clan-core.flakeModules.default
|
|
];
|
|
clan = {
|
|
meta.name = "NewEdgeClan";
|
|
machines = { };
|
|
specialArgs = { inherit self; };
|
|
inherit self;
|
|
};
|
|
}
|