diff --git a/hosts/goober/features/software/default.nix b/hosts/goober/features/software/default.nix index cce31b4..f69c5e0 100644 --- a/hosts/goober/features/software/default.nix +++ b/hosts/goober/features/software/default.nix @@ -6,6 +6,7 @@ ./neovim.nix ./flatpak.nix ./discord.nix + ./ollama.nix ]; } diff --git a/hosts/goober/features/software/ollama.nix b/hosts/goober/features/software/ollama.nix new file mode 100644 index 0000000..ba252c0 --- /dev/null +++ b/hosts/goober/features/software/ollama.nix @@ -0,0 +1,9 @@ +{config, pkgs, ...}: +{ +services.ollama = { + enable = true; + # Optional: load models on startup + loadModels = [ "deepseek-r1:8b" ]; + acceleration = "cuda"; +}; +} \ No newline at end of file diff --git a/hosts/goober/features/software/wine.nix b/hosts/goober/features/software/wine.nix index 4eeec14..7e2c40c 100644 --- a/hosts/goober/features/software/wine.nix +++ b/hosts/goober/features/software/wine.nix @@ -23,5 +23,8 @@ # native wayland support (unstable) wineWowPackages.waylandFull + + # for easy games gestion + lutris ]; }