summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 3248191..4c84305 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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 ];
};
}
Generated by cgit. See skreutz.com for my tech blog and contact information.