Compare commits
5 Commits
fb3fda66eb
...
6eefd2410f
Author | SHA1 | Date | |
---|---|---|---|
|
6eefd2410f | ||
|
68d094f29b | ||
|
d5abd4efa8 | ||
|
45fe5111d2 | ||
|
0e82ac644b |
18
flake.lock
generated
18
flake.lock
generated
@ -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": {
|
||||||
|
@ -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";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ config, pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
frontendDomain = "pino.giugl.io";
|
frontendDomain = "pino.giugl.io";
|
||||||
|
@ -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 ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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" = {
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user