Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ADD: scripts dir, REMOVE: ollama

+8 -9
+5
noah-home.nix
··· 193 193 recursive = true; 194 194 }; 195 195 196 + home.file.".local/bin" = { 197 + source = ./scripts; 198 + recursive = true; 199 + }; 200 + 196 201 home.stateVersion = "23.11"; 197 202 198 203 }
+3
scripts/nr
··· 1 + #!/usr/bin/env rc 2 + 3 + exec nix run nixpkgs#^$*
-9
services.nix
··· 45 45 useRoutingFeatures = "client"; 46 46 }; 47 47 48 - services.ollama = { 49 - enable = true; 50 - host = "[::]"; 51 - models = "/srv/shokuhou/documents/ai-models/ollama"; 52 - user = "ollama"; 53 - group = "nas"; 54 - openFirewall = true; 55 - }; 56 - 57 48 # Containers and VMs 58 49 virtualisation = { 59 50 podman = {