forked from jan-leila/nix-config
		
	added ollama configs
This commit is contained in:
		
							parent
							
								
									f623a33863
								
							
						
					
					
						commit
						aaaf751435
					
				
					 3 changed files with 43 additions and 0 deletions
				
			
		
							
								
								
									
										27
									
								
								modules/nixos-modules/ollama.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								modules/nixos-modules/ollama.nix
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,27 @@ | |||
| { | ||||
|   config, | ||||
|   lib, | ||||
|   ... | ||||
| }: { | ||||
|   config = lib.mkMerge [ | ||||
|     { | ||||
|       services.ollama = { | ||||
|         group = "ollama"; | ||||
|         user = "ollama"; | ||||
|       }; | ||||
|     } | ||||
|     (lib.mkIf config.host.impermanence.enable (lib.mkIf config.services.ollama.enable { | ||||
|       environment.persistence."/persist/system/root" = { | ||||
|         enable = true; | ||||
|         hideMounts = true; | ||||
|         directories = [ | ||||
|           { | ||||
|             directory = config.services.ollama.models; | ||||
|             user = config.services.ollama.user; | ||||
|             group = config.services.ollama.group; | ||||
|           } | ||||
|         ]; | ||||
|       }; | ||||
|     })) | ||||
|   ]; | ||||
| } | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue