diff --git a/flake.nix b/flake.nix index 348dfb9..068d8db 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "nix flakes"; outputs = - { }: + { self }: { templates = { go = { @@ -10,5 +10,7 @@ description = "go template"; }; }; + + defaultTemplate = self.templates.go; }; }