refac: rename templates
This commit is contained in:
parent
348335b454
commit
cca41d80b9
5 changed files with 5 additions and 5 deletions
10
flake.nix
10
flake.nix
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue