Personal-use NixOS configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update Prism to Java 25

encode42 d0f649f5 d6502028

+6 -6
+6 -6
homes/shared/desktop/prismlauncher.nix
··· 1 - { pkgs, ... }: 1 + { pkgs, pkgs-unstable, ... }: 2 2 3 3 { 4 4 home.packages = [ 5 - (pkgs.prismlauncher.override { 5 + (pkgs-unstable.prismlauncher.override { 6 6 additionalPrograms = with pkgs; [ 7 7 ffmpeg 8 8 ]; 9 9 10 - jdks = with pkgs; [ 11 - temurin-jre-bin-8 12 - temurin-jre-bin-17 13 - temurin-bin 10 + jdks = with pkgs.javaPackages.compiler; [ 11 + temurin-bin.jre-8 12 + temurin-bin.jre-17 13 + temurin-bin.jre-25 14 14 ]; 15 15 }) 16 16 ];