From 11f49ad0d7b9d43dbd1dd8c2f255531cca10fb3a Mon Sep 17 00:00:00 2001 From: rotterdam Date: Thu, 6 Apr 2023 12:30:44 -0300 Subject: [PATCH] renamed hello template to shell --- flake.nix | 6 +++--- {hello => shell}/.envrc | 0 {hello => shell}/flake.nix | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename {hello => shell}/.envrc (100%) rename {hello => shell}/flake.nix (85%) 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";