Skip to content
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

fix: run nix fmt over the example flake #10

Closed
Closed
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .github/workflows/eval-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@ jobs:
- uses: "cachix/install-nix-action@V28"
with:
nix_path: nixpkgs=channel:nixpkgs-unstable
- name: Check version
run: nix fmt -- --version
- name: Check formatting
run: nix fmt -- -c .
4 changes: 2 additions & 2 deletions examples/hello-world/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# wrangler-flake.url = "https://flakehub.com/f/ryand56/wrangler/0.2.1.tar.gz"
#
# if it points to github, then running `nix flake update` will just get the
# if it points to github, then running `nix flake update` will just get the
# latest version from github and update wrangler as necessary.
wrangler-flake.url = "github:ryand56/wrangler";
};
Expand Down Expand Up @@ -41,7 +41,7 @@
{
default = pkgs.mkShell {
packages = [
# it's possible to add this package as an override to nixpkgs; here it's just
# it's possible to add this package as an override to nixpkgs; here it's just
# added directly...
wrangler-flake.packages.${system}.wrangler
pkgs.cowsay # this is just included as an example of a package import from nixpkgs - include here any packages you require
Expand Down
Loading