renamed hello template to shell

This commit is contained in:
rotterdam 2023-04-06 12:30:44 -03:00
parent 741dad4df5
commit 11f49ad0d7
3 changed files with 4 additions and 4 deletions

View file

@ -3,9 +3,9 @@
outputs = { self }: {
templates = {
hello = {
path = ./hello;
description = "Template including hello in shell packages";
shell = {
path = ./shell;
description = "Template for a devShell";
};
package = {
path = ./package;

View file

@ -1,5 +1,5 @@
{
description = "Flake template for a nix shell with packages";
description = "Template for a devShell";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";