Hi folks!
Since switching from a channel-based NixOS configuration to a flake-oriented one, neither Carla or Ardour are detecting any of my audio plugins. Other than the top-level nix flake I now use, my configuration is for the most part unchanged. This is the only issue I’ve noticed since making the switch a week or so ago - the rest of my packages still seem to work nicely.
Previously, Ardour, Carla and other audio software used to successfully detect all of my installed plugins. In order to have them find the plugins, I had to set a few ENV vars like the following In my home config:
LV2_PATH = "$HOME/.lv2:$HOME/.nix-profile/lib/lv2:/run/current-system/sw/lib/lv2";
When I echo LV2_PATH
in my terminal today I can confirm that the env var is still available. I wonder if, since switching to using flakes, the nixos config no longer makes use of one of these paths like it used to? Is there perhaps another path I should be checking now?
In case anyone is interested in taking a look, here is my configuration. You can find the switch to flakes within the last couple of commits at either repo.
- NixOS config: GitHub - mitchmindtree/nixos-conf: Personal configuration for NixOS.
- home-manager config: GitHub - mitchmindtree/mindtree-home: Personal nix home-manager configuration.
Any ideas about what might be going on here would be appreciated!