8 lines
158 B
Nix
8 lines
158 B
Nix
{ self, config, ... }:
|
|
{
|
|
flake.flakeModules = {
|
|
clan = import ./clan.nix self.module.clan.default;
|
|
default = config.flake.flakeModules.clan;
|
|
};
|
|
}
|