This commit is contained in:
janis 2026-07-29 16:57:49 +02:00
parent 98388ba0b4
commit a1a81c70f6
Signed by: janis
SSH key fingerprint: SHA256:bB1qbbqmDXZNT0KKD5c2Dfjg53JGhj7B3CFcLIzSqq8
2 changed files with 7 additions and 0 deletions

View file

@ -9,6 +9,7 @@
./mail.nix
./firefox.nix
./games
./ollama.nix
./git-ssh.nix
./hyprlock_idle.nix
./libinput.nix

6
home/ollama.nix Normal file
View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
services.ollama = {
enable = true;
package = pkgs.ollama-vulkan;
};
}