10 lines
198 B
Nix
10 lines
198 B
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
# FFXIV
|
|
xivlauncher
|
|
# Minecraft
|
|
(prismlauncher.override {
|
|
jdks = [ temurin-bin-21 temurin-bin-17 temurin-bin-8 ];
|
|
})
|
|
];
|
|
}
|