Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
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
14 lines
221 B
Nix
14 lines
221 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
(prismlauncher.override {
|
|
additionalPrograms = [ffmpeg zenity];
|
|
jdks = [
|
|
# graalvm-ce
|
|
zulu8
|
|
zulu17
|
|
zulu
|
|
];
|
|
})
|
|
];
|
|
}
|