nixos-config/hosts/precision-5530/home/desktop/lmstudio.nix

13 lines
375 B
Nix

{
# Override LM Studio entry to always launch with Wayland
xdg.desktopEntries.lm-studio = {
name = "LM Studio";
exec = "lmstudio --enable-features=UseOzonePlatform --ozone-platform=wayland %U";
terminal = false;
type = "Application";
icon = "lm-studio";
categories = [ "Utility" ];
comment = "Discover, download, and run LLMs locally";
};
}