From 1934787e8064ed0c0baa6badadd7b680672de062 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Mon, 18 May 2026 12:45:52 -0500 Subject: [PATCH] chore: create desktop entry for prismlauncher --- home/hosts/exodus/default.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/home/hosts/exodus/default.nix b/home/hosts/exodus/default.nix index 55553db..80fe7bc 100644 --- a/home/hosts/exodus/default.nix +++ b/home/hosts/exodus/default.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ lib, pkgs, ... }: { greg = { @@ -36,4 +36,13 @@ settings.SKIP_HOST_UPDATE = true; }; }; + xdg.desktopEntries = { + prismlauncher = { + name = "Prism Launcher - Minecraft"; + actions.minecraft = { + name = "Minecraft"; + exec = lib.getExe pkgs.prismlauncher; + }; + }; + }; }