diff --git a/.github/workflows/eval-format.yml b/.github/workflows/eval-format.yml index d9e7320..65adfc6 100644 --- a/.github/workflows/eval-format.yml +++ b/.github/workflows/eval-format.yml @@ -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 . \ No newline at end of file diff --git a/examples/hello-world/flake.nix b/examples/hello-world/flake.nix index 1f4f57b..73176f6 100644 --- a/examples/hello-world/flake.nix +++ b/examples/hello-world/flake.nix @@ -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"; }; @@ -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