Files
clan-core/templates/clan/minimal-flake-parts/clan.nix
2025-05-27 13:49:14 +10:00

14 lines
199 B
Nix

{ self, inputs, ... }:
{
imports = [
inputs.clan.flakeModules.default
];
clan = {
meta.name = "__CHANGE_ME__";
inherit self;
specialArgs = {
inherit inputs;
};
};
}