diff --git a/flake.nix b/flake.nix index 1146f58..da5e593 100644 --- a/flake.nix +++ b/flake.nix @@ -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; diff --git a/hello/.envrc b/shell/.envrc similarity index 100% rename from hello/.envrc rename to shell/.envrc diff --git a/hello/flake.nix b/shell/flake.nix similarity index 85% rename from hello/flake.nix rename to shell/flake.nix index ee74b8c..3c3d969 100644 --- a/hello/flake.nix +++ b/shell/flake.nix @@ -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";