Add `meta.name` field for the flake parts template. This is not quite ideal, because it still needs to be changed manually after invocation of the template.
13 lines
175 B
Nix
13 lines
175 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.clan.flakeModules.default
|
|
];
|
|
clan = {
|
|
meta.name = "__CHANGE_ME__";
|
|
specialArgs = {
|
|
inherit inputs;
|
|
};
|
|
};
|
|
}
|