I use Nix btw

This commit is contained in:
Bad Manners 2026-01-12 23:03:45 -03:00
parent 432ef1a72c
commit 25bc697309
8 changed files with 412 additions and 7 deletions

17
shell.nix Normal file
View file

@ -0,0 +1,17 @@
let
inherit (import ./npins)
nixpkgs
rust-overlay
;
pkgs = import nixpkgs {
overlays = [ (import rust-overlay) ];
};
in
pkgs.mkShell {
packages = [
pkgs.bacon
pkgs.just
pkgs.rust-bin.stable.latest.default
pkgs.sea-orm-cli
];
}