feat(backups): backups work
This commit is contained in:
parent
12251ef703
commit
bd964bad48
6 changed files with 83 additions and 6 deletions
13
modules/networking/tailscale.nix
Normal file
13
modules/networking/tailscale.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
services.tailscale = {
|
||||
enable = true;
|
||||
extraUpFlags = [ "--accept-routes" ];
|
||||
};
|
||||
|
||||
networking.firewall.trustedInterfaces = [ config.services.tailscale.interfaceName ];
|
||||
networking.firewall.allowedUDPPorts = [ config.services.tailscale.port ];
|
||||
|
||||
systemd.network.wait-online.enable = false;
|
||||
boot.initrd.systemd.network.wait-online.enable = false;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue