From f2f09d57528a2995c6aa4f7057d25182ea1c887a Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Tue, 17 May 2022 10:20:36 +0200 Subject: [PATCH] dev/flake.nix: Explain why we only use inputs --- dev/flake.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev/flake.nix b/dev/flake.nix index 45eef18..ca7a729 100644 --- a/dev/flake.nix +++ b/dev/flake.nix @@ -8,6 +8,8 @@ }; outputs = { self, ... }: - { - }; + { + # Without good or dev outputs, we only use flakes for inputs here. + # The dev tooling is in ./flake-module.nix + }; }