diff --git a/.gitignore b/.gitignore index 5889518..2ab2745 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,8 @@ -/target -package.json -package-lock.json -dump.rdb .vscode -megalinter-reports/ +/target dhat-heap.json +dump.rdb +megalinter-reports/ +package-lock.json +package.json +result \ No newline at end of file diff --git a/flake.nix b/flake.nix index d7fb5f9..35bd6f1 100644 --- a/flake.nix +++ b/flake.nix @@ -19,7 +19,7 @@ naersk-lib = pkgs.callPackage naersk {}; in rec { # Build via nix build .#defaultPackage.x86_64-linux - defaultPackage = naersk-lib.buildPackage { + packages.default = naersk-lib.buildPackage { # The build dependencies buildInputs = with pkgs; [pkg-config openssl]; src = ./.; @@ -27,7 +27,7 @@ # Enter devshell with all the tools via "nix develop" # or "nix-shell" - devShell = with pkgs; + devShells.default = with pkgs; mkShell { buildInputs = [ actionlint @@ -46,6 +46,6 @@ }; # Build via "nix build .#websurfx.x86_64-linux" - websurfx = defaultPackage; + packages.websurfx = packages.default; }); }