summaryrefslogtreecommitdiff
path: root/tofu/deploy.nix
blob: 3f157135a7f87a5667cf3f8fbc5b0801f513705b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  module.deploy_nixos = rec {
    source = "github.com/nix-community/terraform-nixos//deploy_nixos?ref=646cacb12439ca477c05315a7bfd49e9832bc4e3";

    build_on_target = "true";
    flake = true;
    hermetic = true;
    ssh_agent = false;

    nixos_config = "atlas";

    target_user = "root";
    target_host = nixos_config;
  };
}