nix_templates/flake.nix

16 lines
267 B
Nix

{
description = "My Flake templates";
inputs = {
official-templates.url = github:NixOS/templates;
};
outputs = { official-templates, ... }: rec {
templates = {
} // official-templates.templates;
defaultTemplate = templates.trivial;
};
}