add nix develop support

This commit is contained in:
SomeGuyNamedMy
2023-06-26 16:02:54 -04:00
parent 14fb2d732b
commit 042cbc11b2

View File

@@ -41,5 +41,20 @@
};
default = lemoa;
};
devShells.default = pkgs.mkShell {
packages = with pkgs; [
openssl
pkg-config
gtk4
libadwaita
#rust
cargo
rustc
rust-analyzer
rustfmt
];
};
});
}