Compare commits

...

5 Commits

Author SHA1 Message Date
Giulio De Pasquale
6eefd2410f flake update 2024-04-24 16:05:05 +01:00
Giulio De Pasquale
68d094f29b helix: added pino models 2024-04-24 16:01:04 +01:00
Giulio De Pasquale
d5abd4efa8 nginx: ignore proxy settings to allow streaming ollama 2024-04-17 17:02:22 +01:00
Giulio De Pasquale
45fe5111d2 navidrome: open to WAN 2024-04-17 17:01:59 +01:00
Giulio De Pasquale
0e82ac644b llm: remove unused config arg 2024-04-17 17:01:45 +01:00
6 changed files with 22 additions and 13 deletions

18
flake.lock generated
View File

@ -24,22 +24,22 @@
"local-unstable": { "local-unstable": {
"locked": { "locked": {
"lastModified": 0, "lastModified": 0,
"narHash": "sha256-x6jZEGOgh8Pjf83bbB2rC5GAP3pNlFyFXeXjevqEmJc=", "narHash": "sha256-zw0FIry0jIH2RD4oPubgHZ2YZ03s7f5YZyvXT/wvTBA=",
"path": "/home/giulio/dev/abysssol-nixpkgs", "path": "/home/giulio/dev/nixpkgs",
"type": "path" "type": "path"
}, },
"original": { "original": {
"path": "/home/giulio/dev/abysssol-nixpkgs", "path": "/home/giulio/dev/nixpkgs",
"type": "path" "type": "path"
} }
}, },
"nixos-unstable": { "nixos-unstable": {
"locked": { "locked": {
"lastModified": 1712841482, "lastModified": 1713970445,
"narHash": "sha256-KvP+22fw3QTumfHQEHUuH9aBEXM5YPnIWT6cJQ54ZfA=", "narHash": "sha256-FQy+M/Wj6TT4BzvhXP8Q7XzfYPoYY4KhmSX5YoSNIV8=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "9f53efb9b525398a2ad9f09568bcea708dd79c97", "rev": "d171375d7786e41160a9cb0a226a99ee68738c14",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -51,11 +51,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1712840325, "lastModified": 1713958888,
"narHash": "sha256-81Q3wDtTPKWTqZXehhRk7k/bDNPC28UYmeXoY5wys4I=", "narHash": "sha256-QZh6ag1mnQslIdXZOY3a0TTKIYnKcQax9zmCVp+2e10=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "6c5ad2fa3a97cd0ee44ac921a0bc1b0a780ce1be", "rev": "ecc5586a0b9716f457f7974cbc890d68b3e92282",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -2,7 +2,7 @@
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11"; nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
nixos-unstable.url = "github:NixOS/nixpkgs/master"; nixos-unstable.url = "github:NixOS/nixpkgs/master";
local-unstable.url = "path:///home/giulio/dev/abysssol-nixpkgs"; local-unstable.url = "path:///home/giulio/dev/nixpkgs";
home-manager = { home-manager = {
url = "github:nix-community/home-manager/release-23.11"; url = "github:nix-community/home-manager/release-23.11";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }: { pkgs, ... }:
let let
frontendDomain = "pino.giugl.io"; frontendDomain = "pino.giugl.io";

View File

@ -26,7 +26,8 @@ in
locations."/" = { locations."/" = {
port = 4533; port = 4533;
allowLan = true; allowLan = true;
allow = [ config.architect.networks."tailscale".net ]; allowWAN = true;
# allow = [ config.architect.networks."tailscale".net ];
}; };
}; };

View File

@ -10,7 +10,7 @@
package = pkgs.nginx; package = pkgs.nginx;
recommendedGzipSettings = true; recommendedGzipSettings = true;
recommendedOptimisation = true; recommendedOptimisation = true;
recommendedProxySettings = true; # recommendedProxySettings = true;
recommendedTlsSettings = true; recommendedTlsSettings = true;
virtualHosts."architect.devs.giugl.io" = { virtualHosts."architect.devs.giugl.io" = {

View File

@ -29,6 +29,14 @@ let
max_input_tokens: null max_input_tokens: null
- name: pino-coder - name: pino-coder
max_input_tokens: null max_input_tokens: null
- name: pino-fast
max_input_tokens: null
- name: pino
max_input_tokens: null
- name: code-commenter
max_input_tokens: null
- name: git-commit-message
max_input_tokens: null
''; '';
aichatRoles = '' aichatRoles = ''
- name: comment - name: comment