From f3f3c876700984f0e98d28be247e4346b4f4a810 Mon Sep 17 00:00:00 2001 From: jhonas Date: Wed, 12 Oct 2022 14:42:09 +0200 Subject: [PATCH] Fix flake template --- flake.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index 427ed7a..1f186c9 100644 --- a/flake.nix +++ b/flake.nix @@ -67,12 +67,11 @@ triton-utils = import ./pkgs/triton-utils.nix { inherit pkgs; }; triton-docker-env = import ./pkgs/triton-docker-env.nix { inherit pkgs; }; }; - outputs = { self }: { - defaultTemplate = { - description = "nix flake new --template 'git+https://git.greenbaum.cloud/greenbaum.cloud/tritonshell?ref=main' ./tritonshell"; - path = ./template; - }; - }; } - ); + ) // { + defaultTemplate = { + description = "nix flake new --template 'git+https://git.greenbaum.cloud/greenbaum.cloud/tritonshell?ref=main' ./tritonshell"; + path = ./template; + }; + }; }