feat: Add prismlauncher and customize jdk versions
This commit is contained in:
parent
9556ca8d50
commit
3185f43ff7
4 changed files with 17 additions and 0 deletions
|
|
@ -95,6 +95,7 @@
|
|||
doom-emacs
|
||||
neovide
|
||||
osu-lazer-bin # typochecker: disable-line
|
||||
prismlauncher
|
||||
|
||||
sbctl
|
||||
];
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ in
|
|||
./nautilus.nix
|
||||
./neovim-nightly.nix
|
||||
./vim.nix
|
||||
./prismlauncher.nix
|
||||
|
||||
# Nur
|
||||
./nur.nix
|
||||
|
|
|
|||
5
overlays/modifications/prismlauncher.nix
Normal file
5
overlays/modifications/prismlauncher.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{outputs, ...}: _final: prev: let
|
||||
inherit (prev.stdenv.hostPlatform) system;
|
||||
in {
|
||||
prismlauncher = outputs.packages.${system}.prismlauncher';
|
||||
}
|
||||
10
pkgs/prismlauncher'.nix
Normal file
10
pkgs/prismlauncher'.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
prismlauncher,
|
||||
jdk17,
|
||||
jdk21,
|
||||
jdk8,
|
||||
jdk25,
|
||||
}:
|
||||
prismlauncher.override {
|
||||
jdks = [jdk17 jdk21 jdk8 jdk25];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue