This commit is contained in:
2025-08-11 11:25:12 -06:00
parent c1366fdfac
commit bc836e8985
5 changed files with 157 additions and 9 deletions

View File

@@ -46,9 +46,12 @@
let pkgs = import nixpkgs { inherit system; }; in {
default = pkgs.mkShell {
buildInputs = with pkgs; [
rustc cargo rustfmt clippy
rustc cargo rustfmt clippy rust-analyzer rust-src
gnome-monitor-config xorg.xrandr bash coreutils
];
shellHook = ''
export RUST_SRC_PATH=${pkgs.rust-src}/lib/rustlib/src/rust/library
'';
};
}
);