DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: c7117b1caf9dd72ff8b54b6c0e168d335475f541 nix-arta/modules/nixos/tailscale.nix -rw-r--r-- 408 bytes
c7117b1cJonni Liljamo feat: ssh-agent 5 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  flake.modules.nixos.tailscale = {
    config,
    lib,
    ...
  }: let
    cfg = config.arta.tailscale;
  in {
    options.arta.tailscale = {
      enableSSH = lib.mkOption {
        type = lib.types.bool;
        default = true;
      };
    };

    config = {
      services.tailscale = {
        enable = true;
        extraSetFlags = lib.lists.optional cfg.enableSSH "--ssh";
      };
    };
  };
}