From cf91c5e4f395ee1773526585b746396f2c23fbb9 Mon Sep 17 00:00:00 2001 From: Kyler Olsen Date: Thu, 8 May 2025 15:03:06 -0600 Subject: [PATCH] Setup PrismLauncher --- home/hyprland.nix | 2 ++ home/mc/prism.nix | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 home/mc/prism.nix diff --git a/home/hyprland.nix b/home/hyprland.nix index 0002b4f..6d30d38 100644 --- a/home/hyprland.nix +++ b/home/hyprland.nix @@ -3,6 +3,7 @@ { imports = [ ./waybar/waybar.nix + ./mc/prism.nix ]; home.packages = with pkgs; [ @@ -68,6 +69,7 @@ # "$mainMod, N, exec, multimc -l \"Dragon Egg Dome\"" # "$mainMod, M, exec, multimc -l \"Purple Cello Server\"" # "$mainMod SHIFT, M, exec, multimc" + "$mainMod , M, exec, prismlauncher" # Move focus with mainMod + arrow keys "$mainMod, left, movefocus, l" diff --git a/home/mc/prism.nix b/home/mc/prism.nix new file mode 100644 index 0000000..224d54a --- /dev/null +++ b/home/mc/prism.nix @@ -0,0 +1,10 @@ +{ config, pkgs, ... }: + +{ + home.packages = with pkgs; [ + prismlauncher + jdk21_headless + # jdk17_headless + # jdk8_headless + ]; +}