From 042cbc11b2be518c94877cc079f0c9f6a6c62240 Mon Sep 17 00:00:00 2001 From: SomeGuyNamedMy Date: Mon, 26 Jun 2023 16:02:54 -0400 Subject: [PATCH] add nix develop support --- flake.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/flake.nix b/flake.nix index da83d01..583acf9 100644 --- a/flake.nix +++ b/flake.nix @@ -41,5 +41,20 @@ }; default = lemoa; }; + + devShells.default = pkgs.mkShell { + packages = with pkgs; [ + openssl + pkg-config + gtk4 + libadwaita + + #rust + cargo + rustc + rust-analyzer + rustfmt + ]; + }; }); }