feat: populate all table columns

This commit is contained in:
2026-08-02 17:43:39 +02:00
parent 153ba18d1c
commit e79fbea545
3 changed files with 31 additions and 23 deletions
+11 -9
View File
@@ -28,14 +28,16 @@
};
rust = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
libPath = with pkgs; lib.makeLibraryPath [
libxkbcommon
libGL
wayland
fontconfig
libinput
libgbm
];
libPath =
with pkgs;
lib.makeLibraryPath [
libxkbcommon
libGL
wayland
fontconfig
libinput
libgbm
];
in
{
@@ -55,8 +57,8 @@
LD_LIBRARY_PATH = "$LD_LIBRARY_PATH:${libPath}";
shellHook = ''
exec fish
echo Entered Rust dev shell for project SoftwareManager-rs
exec fish
'';
};
};