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

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