Hello all I am having a lot of trouble trying to get my flake to develope tauri applications
``` nix
{
description = "home lab flake configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
};
outputs = { self, nixpkgs, ... } @ inputs:
let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in
{
nixosConfigurations.dev-wsl = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
./hosts/dev-wsl/configuration.nix
./users/aundre/configuration.nix
./modules/tauri/configuration.nix
];
};
};
}
```
modules/tauri/configuration.nix
``` nix
{ config, lib, pkgs, … }:
{
environment.systemPackages = with pkgs; [
cargo
rustc
cargo-tauri
pkg-config
wrapGAppsHook4
bun
librsvg
webkitgtk_4_1
];
}
```
I am trying to figure out how to make a shell with $PKG_CONFIG_PATH and $LD_LIBRARY_PATH because that is the only thing not working in my configuration.
There is a nix shell that works for me on https://wiki.nixos.org/wiki/Tauri. I am mostly just curious about what I am missing that is
preventing my flake from functioning similarly.