summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kreutz <mail@skreutz.com>2025-08-24 22:17:25 +0200
committerStefan Kreutz <mail@skreutz.com>2025-08-24 22:17:25 +0200
commit5e21d8b3693692bebef74719e5a8a29d6790a1c1 (patch)
treeb019bea7be28f13e2d0f79e903bf5fc8ffb05d3b
parenta09596716898417e3b265d2482cc69eb848a12a1 (diff)
downloadwpa-psk-5e21d8b3693692bebef74719e5a8a29d6790a1c1.tar
Refactor flake outputs
-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.