From 138145d3b1bb263bce36acf1302f533dc4e283a2 Mon Sep 17 00:00:00 2001 From: Tobias Happ Date: Wed, 26 Oct 2022 12:28:38 +0200 Subject: [PATCH] flake: sort outputs alphabetically --- flake.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index b77659d..971413d 100644 --- a/flake.nix +++ b/flake.nix @@ -31,7 +31,10 @@ }; in { - overlays.default = overlay; + apps.aarch64-linux = { + default = app; + nix-on-droid = app; + }; lib.nixOnDroidConfiguration = { config @@ -49,10 +52,7 @@ isFlake = true; }; - apps.aarch64-linux = { - default = app; - nix-on-droid = app; - }; + overlays.default = overlay; templates = { default = self.templates.minimal;