clan-core/templates/flake-module.nix
Jörg Thalheim e5db26d4b6
All checks were successful
checks-impure / test (pull_request) Successful in 3s
checks / test (pull_request) Successful in 3s
set default template
2023-08-30 13:28:21 +02:00

10 lines
185 B
Nix

{ self, ... }: {
flake.templates = {
new-clan = {
description = "Initialize a new clan flake";
path = ./new-clan;
};
default = self.templates.new-clan;
};
}