diff options
Diffstat (limited to 'infra/hosts/indra/modules.nix')
| -rw-r--r-- | infra/hosts/indra/modules.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/infra/hosts/indra/modules.nix b/infra/hosts/indra/modules.nix new file mode 100644 index 0000000..98b9439 --- /dev/null +++ b/infra/hosts/indra/modules.nix @@ -0,0 +1,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; + }; + }; +} |
