Compare commits

...

2 commits

Author SHA1 Message Date
c2a5a4b561 tailscale: split into a seperate module for darwin
use brew on macOS to get tray integration.
2025-05-25 01:15:37 +10:00
5438cc0d76 forgejo: allow registration
previously registration was blocked (even with external providers) as
DISABLE_REGISTRATION was enabled.

now users can only register through oidc.
2025-05-25 01:14:43 +10:00
3 changed files with 8 additions and 2 deletions

View file

@ -88,7 +88,7 @@
./modules/desktop/de/darwin.nix
./modules/hardware/darwin.nix
./modules/nix/darwin.nix
./modules/network/vpn/tailscale.nix
./modules/network/vpn/tailscale-darwin.nix
./hosts/kita/conf.nix
];

View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
homebrew.casks = [
"tailscale"
];
}

View file

@ -20,7 +20,6 @@
security.REVERSE_PROXY_TRUSTED_PROXIES = "127.0.0.0/8,::1/128";
service = {
DISABLE_REGISTRATION = true;
ALLOW_ONLY_EXTERNAL_REGISTRATION = true;
SHOW_REGISTRATION_BUTTON = false;
ENABLE_PASSWORD_SIGNIN_FORM = false;