holy shitttt do NOT run this version it WILL break your desktop PLEASE DO NOT RUN

This commit is contained in:
Schrottkatze 2022-06-28 00:56:20 +02:00
parent 0b1cbcea0e
commit 39916cd6db
4 changed files with 223 additions and 139 deletions

13
shell.nix Normal file
View file

@ -0,0 +1,13 @@
with import <nixpkgs> {};
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rustc
rust-analyzer
rustfmt
pkg-config
xorg.libX11
xorg.libXtst
];
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
}