fix: stop the "nix-colors / non-existent input nixpkgs" warning
nix-colors is a pure data flake (base16 schemes) — it declares no inputs, so `inputs.nixpkgs.follows = "nixpkgs"` against it produces a warning on every evaluation. Drop the override and just `url`-import it. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -20,10 +20,10 @@
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
nix-colors = {
|
||||
url = "github:misterio77/nix-colors";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
# nix-colors is a pure data flake (base16 schemes) — it has no inputs,
|
||||
# so any `inputs.X.follows` declaration here triggers a "non-existent
|
||||
# input" warning. Just URL it.
|
||||
nix-colors.url = "github:misterio77/nix-colors";
|
||||
stylix = {
|
||||
url = "github:danth/stylix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
Reference in New Issue
Block a user