diff options
author | Stefan Kreutz <mail@skreutz.com> | 2025-08-24 22:17:25 +0200 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2025-08-24 22:17:25 +0200 |
commit | 5e21d8b3693692bebef74719e5a8a29d6790a1c1 (patch) | |
tree | b019bea7be28f13e2d0f79e903bf5fc8ffb05d3b | |
parent | a09596716898417e3b265d2482cc69eb848a12a1 (diff) | |
download | wpa-psk-5e21d8b3693692bebef74719e5a8a29d6790a1c1.tar |
Refactor flake outputs
-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 ]; }; } |