diff options
-rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,7 +19,7 @@ in rec { # nix build # nix run . -- --help - defaultPackage = packages.wpa-psk-cli; + packages.default = packages.wpa-psk-cli; # nix build .#wpa-psk-cli # nix run .#wpa-psk-cli -- --help @@ -30,7 +30,7 @@ }; # nix develop - devShell = pkgs.mkShell { + devShells.default = pkgs.mkShell { nativeBuildInputs = with pkgs; [ rustc cargo rustfmt clippy cargo-audit cargo-edit ]; }; } |