Files
dotfiles/home/apps/prismlauncher.nix
uttarayan21 8bd6da8f75
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat(home): add prismlauncher and ida apps, enable ollama service
feat(nixos): enable ollama service with cuda support
fix(nixos): update llama service to use fixed port and remove commented code
chore(home): reorganize app imports and remove unused packages
2025-12-09 17:45:27 +05:30

14 lines
221 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
(prismlauncher.override {
additionalPrograms = [ffmpeg zenity];
jdks = [
# graalvm-ce
zulu8
zulu17
zulu
];
})
];
}