Compare commits

..

2 commits

4 changed files with 26 additions and 1 deletions

View file

@ -2,7 +2,7 @@
let let
script = pkgs.writeShellScriptBin "deafen-action" '' script = pkgs.writeShellScriptBin "deafen-action" ''
hyprctl dispatch sendshortcut CTRL+SHIFT, D, 'class:^(vencord)$' hyprctl dispatch sendshortcut CTRL+SHIFT, D, 'class:^(vesktop)$'
''; '';
in in
{ {

View file

@ -9,6 +9,11 @@
reverse_proxy http://127.0.0.1:3000 reverse_proxy http://127.0.0.1:3000
''; '';
# forgejo
virtualHosts."git.toast.name".extraConfig = ''
reverse_proxy http://127.0.0.1:3001
'';
# vaultwarden # vaultwarden
virtualHosts."vps.curl-pence.ts.net".extraConfig = '' virtualHosts."vps.curl-pence.ts.net".extraConfig = ''
reverse_proxy /vaultwarden/* http://127.0.0.1:8222 reverse_proxy /vaultwarden/* http://127.0.0.1:8222

View file

@ -5,5 +5,6 @@
./openssh.nix ./openssh.nix
./zipline.nix ./zipline.nix
./caddy.nix ./caddy.nix
./forgejo.nix
]; ];
} }

View file

@ -0,0 +1,19 @@
{
services.forgejo = {
enable = true;
settings = {
server = {
HTTP_ADDR = "127.0.0.1";
HTTP_PORT = 3001;
DOMAIN = "git.toast.name";
ROOT_URL = "https://git.toast.name/";
LANDING_PAGE = "explore";
};
service.DISABLE_REGISTRATION = true;
actions = {
ENABLED = true;
DEFAULT_ACTIONS_URL = "github";
};
};
};
}