diff --git a/index.html b/index.html
index 8a464b2..ff545c6 100644
--- a/index.html
+++ b/index.html
@@ -4547,9 +4547,9 @@ However, you can use any of the flake reference styles defined in .url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
hello-nix = {
- url = "git+https://codeberg.org/mhwombat/hello-nix";
- flake = false;
- };
+ url = "git+https://codeberg.org/mhwombat/hello-nix";
+ flake = false;
+ };
};
outputs = { self, nixpkgs, flake-utils, hello-nix }:
@@ -4557,12 +4557,12 @@ However, you can use any of the flake reference styles defined in let
pkgs = import nixpkgs { inherit system; };
in
- {
- devShells = rec {
- default = pkgs.mkShell {
- shellHook =
- ''
- PATH=${hello-nix}:$PATH
+ {
+ devShells = rec {
+ default = pkgs.mkShell {
+ shellHook =
+ ''
+ PATH=${hello-nix}:$PATH
'';
};
};
@@ -4898,7 +4898,7 @@ mkShell {