working workspaces

This commit is contained in:
Henry Hiles 2026-04-19 16:02:50 -04:00
commit 30af165d02
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs
54 changed files with 5065 additions and 158 deletions

View file

@ -2,8 +2,15 @@
pkgs.mkShell {
packages = with pkgs; [
cairo
pkg-config
libxkbcommon
gtk-layer-shell
cargo
rustfmt
flutter_rust_bridge_codegen
(pkgs.writeShellScriptBin "rustup" (builtins.readFile ./fake-rustup.sh))
(flutter.override {
extraPkgConfigPackages = [
gtk-layer-shell
@ -11,5 +18,10 @@ pkgs.mkShell {
})
];
LD_LIBRARY_PATH = "./build/linux/x64/debug/plugins/wayland_layer_shell";
RUST_BACKTRACE = 1;
LD_LIBRARY_PATH =
let
plugins = "./build/linux/x64/debug/plugins";
in
"${plugins}/wayland_layer_shell:${plugins}/rust_lib_flight";
}