refac: rename templates

This commit is contained in:
Dmitriy Pleshevskiy 2022-09-07 01:17:06 +03:00
parent 348335b454
commit cca41d80b9
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
5 changed files with 5 additions and 5 deletions

View File

@ -3,15 +3,15 @@
outputs = { self }: {
templates = {
base-flake = {
path = ./base-flake;
flake-base = {
path = ./flakes/base;
description = "An empty flake for each default system";
};
rust-flake = {
path = ./rust-flake;
flake-rust = {
path = ./flakes/rust;
description = "Flake to develop, build and run a rust application";
};
};
defaultTemplate = self.templates.base-flake;
defaultTemplate = self.templates.flake-base;
};
}