1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-16 21:38:24 +00:00

dev/flake.nix: Rewrite comments

This commit is contained in:
Robert Hensing 2022-11-11 05:53:18 +01:00
parent 3efe8e4619
commit fb87cc7333

View file

@ -3,7 +3,8 @@
inputs = { inputs = {
# Flakes don't give us a good way to depend on .., so we don't. # 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"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
@ -15,7 +16,7 @@
outputs = { self, ... }: outputs = { self, ... }:
{ {
# Without good or dev outputs, we only use flakes for inputs here.
# The dev tooling is in ./flake-module.nix # The dev tooling is in ./flake-module.nix
# See comment at `inputs` above.
}; };
} }