diff options
author | Emile <git@emile.space> | 2025-02-13 21:57:31 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2025-02-13 21:57:31 +0100 |
commit | 46d91e18f15c3bd4336256bd512105bb6ead0b3e (patch) | |
tree | 108412c8be568524b92e1ef3727fb75e5b07fc3d | |
parent | 6921c52db6b56cf53f2ed32ab6234d757bc01185 (diff) |
flake: hydraJobs.templates: add missing semicolon
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index ec97955..bd2ae3b 100644 --- a/flake.nix +++ b/flake.nix @@ -226,7 +226,7 @@ (import ./nix/templates/${name}/flake.nix).outputs) { inherit nixpkgs flake-utils; # Self needs to be the imported flake, as some packages in some templates rely on each other, such as the goapp/backend-docker package which relies on the goapp/backend-pkg. Cross-template references are not supported (yet); - self = { packages = (import ./nix/templates/${name}/flake.nix).packages }; + self = { packages = (import ./nix/templates/${name}/flake.nix).packages; }; }).packages or {}) templ); in { |