From f29dc15782be8458374ca7b303ca1c156da37a67 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 24 Dec 2022 16:35:55 -0800 Subject: [PATCH] Revert "Add name and description to shell : )" --- templates/init/flake.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/templates/init/flake.nix b/templates/init/flake.nix index 7880d82..30cc48b 100644 --- a/templates/init/flake.nix +++ b/templates/init/flake.nix @@ -1,10 +1,6 @@ -let - name = "zig-overlay"; - description = "An empty project that uses Zig."; -in { - inherit name description; - + description = "An empty project that uses Zig."; + inputs = { nixpkgs.url = "github:nixos/nixpkgs/release-22.05"; flake-utils.url = "github:numtide/flake-utils"; @@ -38,7 +34,6 @@ in pkgs = import nixpkgs {inherit overlays system;}; in rec { devShells.default = pkgs.mkShell { - inherit name description; nativeBuildInputs = with pkgs; [ zigpkgs.master ];