aboutsummaryrefslogtreecommitdiff
path: root/infra/hosts/indra/modules.nix
blob: 6f561f1d813f3879f65578d24fd60533d213d913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ config, ... }:
{
  flake.modules.nixos.indra = {
    imports = map (m: config.flake.modules.nixos."${m}") [
      # keep-sorted start
      "base"
      "caddy"
      "deploy"
      "vkcku.com"
      # keep-sorted end
    ];

    infra.tailscale = {
      authenticate = true;
      ssh = true;
    };
  };
}