clan-core/templates/flake-module.nix

15 lines
311 B
Nix
Raw Normal View History

2024-03-17 18:48:49 +00:00
{ self, ... }:
{
flake.templates = {
new-clan = {
description = "Initialize a new clan flake";
path = ./new-clan;
};
2024-05-31 15:22:38 +00:00
empty = {
description = "A empty clan template. Primarily for usage with the clan ui";
path = ./empty;
};
2023-08-30 11:28:21 +00:00
default = self.templates.new-clan;
};
}