-
Notifications
You must be signed in to change notification settings - Fork 0
fix: resolve nix CI failures #1428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
64acb82
af79199
6e6001a
9837e73
15e1691
81f15ee
00ef2ff
ecdfe60
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,4 +5,4 @@ | |
| "dolt_server_port": 3307, | ||
| "dolt_database": "df", | ||
| "project_id": "c1ab0b8d-ab33-43ae-9238-ab8d242a122a" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,8 @@ | ||
| { pkgs }: | ||
| { | ||
| pkgs, | ||
| lib, | ||
| inputs, | ||
| }: | ||
|
Comment on lines
+1
to
+5
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The arguments |
||
| { | ||
| overlay-neovim-lua = pkgs.runCommand "overlay-neovim-lua" { } '' | ||
| ${ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| excludes = [".beads/*"] | ||
|
|
||
| [formatter.nix] | ||
| command = "nixfmt" | ||
| includes = ["*.nix"] | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tests/overlays.nixnow bindslibandinputsbut neither is used anywhere in this file. CI runsdeadnix .(see Makefile), which will flag unused function arguments and likely keep nix-lint failing. To accept extra args from the call site without introducing unused bindings, switch the function args to{ pkgs, ... }:(or use_lib/_inputsif you want to keep them explicitly).