mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
tailscale: Return to the stable package after kernel fix
See https://github.com/NixOS/nixpkgs/issues/438765#issuecomment-3281041188
This commit is contained in:
parent
99e7b25a8a
commit
2cfcf9ee74
1 changed files with 1 additions and 9 deletions
|
|
@ -1,9 +1,4 @@
|
||||||
{
|
{ config, lib, ... }:
|
||||||
config,
|
|
||||||
pkgs-unstable,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
let
|
let
|
||||||
cfg = config.custom.services.tailscale;
|
cfg = config.custom.services.tailscale;
|
||||||
in
|
in
|
||||||
|
|
@ -27,12 +22,9 @@ in
|
||||||
|
|
||||||
services.tailscale = {
|
services.tailscale = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs-unstable.tailscale;
|
|
||||||
|
|
||||||
authKeyFile = config.sops.secrets."tailscale/auth-key".path;
|
authKeyFile = config.sops.secrets."tailscale/auth-key".path;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
useRoutingFeatures = if cfg.exitNode.enable then "server" else "client";
|
useRoutingFeatures = if cfg.exitNode.enable then "server" else "client";
|
||||||
|
|
||||||
extraUpFlags = [ "--reset=true" ];
|
extraUpFlags = [ "--reset=true" ];
|
||||||
extraSetFlags = [
|
extraSetFlags = [
|
||||||
"--ssh=${lib.boolToString cfg.ssh.enable}"
|
"--ssh=${lib.boolToString cfg.ssh.enable}"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue