From fb87cc73330d0e4a1bb03b9de52960b2204ad3ec Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Fri, 11 Nov 2022 05:53:18 +0100 Subject: [PATCH] dev/flake.nix: Rewrite comments --- dev/flake.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev/flake.nix b/dev/flake.nix index b9a2092..6042561 100644 --- a/dev/flake.nix +++ b/dev/flake.nix @@ -3,7 +3,8 @@ inputs = { # Flakes don't give us a good way to depend on .., so we don't. - # This has drastic consequences of course. + # As a consequence, this flake is a little non-standard, and + # we can't use the `nix` CLI as expected. nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; @@ -15,7 +16,7 @@ outputs = { self, ... }: { - # Without good or dev outputs, we only use flakes for inputs here. # The dev tooling is in ./flake-module.nix + # See comment at `inputs` above. }; }