diff --git a/hosts/home/configuration.nix b/hosts/home/configuration.nix index bc8c22c..a24c72e 100644 --- a/hosts/home/configuration.nix +++ b/hosts/home/configuration.nix @@ -1,4 +1,4 @@ -{ globalData, ... }: +{ globalData, pkgs, ... }: { imports = [ @@ -31,4 +31,13 @@ virtualisation.docker.enable = true; # Torrent client services.transmission.enable = true; + + services.ollama = { + enable = true; + package = pkgs.unstable.ollama; + }; + + environment.systemPackages = with pkgs.unstable; [ + oterm + ]; }