fix(programs/java): recreate symlinks properly

This commit is contained in:
uku 2025-03-24 16:02:27 +01:00
parent df6c864c4d
commit 4cc7e14bb6
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o

View file

@ -1,8 +1,8 @@
{ pkgs, ... }:
{
systemd.tmpfiles.rules = [
"L /opt/temurin-21 - - - - ${pkgs.temurin-bin-21}"
"L /opt/temurin-17 - - - - ${pkgs.temurin-bin-17}"
"L /opt/temurin-8 - - - - ${pkgs.temurin-bin-8}"
"L+ /opt/temurin-21 - - - - ${pkgs.temurin-bin-21}"
"L+ /opt/temurin-17 - - - - ${pkgs.temurin-bin-17}"
"L+ /opt/temurin-8 - - - - ${pkgs.temurin-bin-8}"
];
}