NixOS + home-manager configs, mirrored from GitLab SaaS.
gitlab.com/andreijiroh-dev/nixops-config
nix-flake
nixos
home-manager
nixpkgs
nix-flakes
1# This Nix file contains the Tailscale configuration here
2# in NixOS, mostly on the side of the daemon and its related
3# configurations.
4
5{ config, pkgs, lib, ... }:
6
7{
8 config = {
9 services.tailscale = {
10 enable = true;
11 useRoutingFeatures = "both";
12 openFirewall = true;
13 disableTaildrop = false;
14 extraDaemonFlags = [
15 "--verbose=3"
16 ];
17 };
18
19 system.nixos.tags = [ "tailnet" ];
20 };
21}