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 + ]; +}