flake-edit 0.3.6

Edit your flake inputs with ease.
Documentation
# flake-edit ~ configuration file
# https://github.com/a-kenji/flake-edit

# Configuration for `flake-edit follow [PATHS]`
[follow]
# Inputs to ignore. Supports two formats:
#   - Full path: "crane.nixpkgs" - ignores only that specific nested input
#   - Simple name: "systems" - ignores all nested inputs with that name
# ignore = ["systems", "crane.flake-utils"]

# Minimum number of transitive follows required to add a top-level follows input.
# Set to 0 to disable transitive follows deduplication.
# transitive_min = 2

# Alias mappings.
# Key is the canonical name (must exist at top-level), values are alternatives.
# Example: if nested input is "nixpkgs-lib" and top-level "nixpkgs" exists,
# follow will suggest: poetry2nix.nixpkgs-lib -> nixpkgs
# aliases = { nixpkgs = ["nixpkgs-lib"] }

# Maximum depth of follows declarations to write.
# Unset (the default) writes follows at every depth the lockfile graph
# supports. Set an explicit number to cap the depth: 1 writes only
# `parent.nested.follows = "target"`, 2 also writes
# `parent.middle.grandchild.follows = "target"`, and so on.
# max_depth = 1