Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ Here's an example nix-darwin configuration that would be compatible with Determi
url = "https://flakehub.com/f/nix-darwin/nix-darwin/0";
inputs.nixpkgs.follows = "nixpkgs";
};
determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/3";
};

outputs = { self, ... }@inputs: {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

personally, I'd yoink the { self, ...}@ bit and just leave it as inputs. I really don't like the destructing here and try to undo it anywhere I see it.

(Also avoids the issue where nix will populate those destructured fields from the registry if they're not in the inputs [we warn, but still...])

totally a nit though

Expand Down
Loading