4 lines
130 B
Nix
4 lines
130 B
Nix
|
{ pkgs, ... }: {
|
||
|
environment.systemPackages = with pkgs; [ ollama ];
|
||
|
networking.firewall.allowedTCPPorts = [ 11434 ];
|
||
|
}
|