aboutsummaryrefslogtreecommitdiff
path: root/infra/hosts/indra/modules.nix
diff options
context:
space:
mode:
authorvkcku <[email protected]>2026-06-01 16:36:34 +0530
committervkcku <[email protected]>2026-06-01 16:36:34 +0530
commit6ed07ef251e380dd15fc5d3351e62614f102ea5e (patch)
tree01a8d0bf2a5737b8d83a3c7098bfbaa120225b93 /infra/hosts/indra/modules.nix
parentinfra: add deploy user module (diff)
infra(indra): initial configuration
monorepo-revid: f03da585dab1b846571ab225c4196750254c319f
Diffstat (limited to 'infra/hosts/indra/modules.nix')
-rw-r--r--infra/hosts/indra/modules.nix16
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;
+ };
+ };
+}