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 }: { outputs = { self }: {
templates = { templates = {
base-flake = { flake-base = {
path = ./base-flake; path = ./flakes/base;
description = "An empty flake for each default system"; description = "An empty flake for each default system";
}; };
rust-flake = { flake-rust = {
path = ./rust-flake; path = ./flakes/rust;
description = "Flake to develop, build and run a rust application"; description = "Flake to develop, build and run a rust application";
}; };
}; };
defaultTemplate = self.templates.base-flake; defaultTemplate = self.templates.flake-base;
}; };
} }