Files
cnix/nixos/core/shells/dev.nix
2024-07-13 13:18:22 +02:00

22 lines
370 B
Nix

{pkgs ? import <nixpkgs> {}, ...}: {
default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
_rustBuild
];
buildInputs = with pkgs; [
# rust-bin.stable.latest.default
openssl
pkg-config
ez
fd
gtk3
gtk4
];
shellHook = ''
alias ls=eza
alias find=fd
'';
RUST_BACKTRACE = 1;
};
}