Setup PrismLauncher

This commit is contained in:
Kyler Olsen 2025-05-08 15:03:06 -06:00
parent 566ba727cc
commit cf91c5e4f3
2 changed files with 12 additions and 0 deletions

View File

@ -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"

10
home/mc/prism.nix Normal file
View File

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
prismlauncher
jdk21_headless
# jdk17_headless
# jdk8_headless
];
}