clan-core/flakeModules/flake-module.nix

8 lines
138 B
Nix
Raw Normal View History

2024-04-04 11:30:42 +00:00
{ self, config, ... }:
2024-04-03 11:46:17 +00:00
{
flake.flakeModules = {
2024-04-04 11:30:42 +00:00
clan = import ./clan.nix self;
2024-04-03 11:46:17 +00:00
default = config.flake.flakeModules.clan;
};
}