aboutsummaryrefslogtreecommitdiff
path: root/machines/test/default.nix
blob: 92294bea609cac621f85bc2f2858a7538babdfca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, lib, pkgs, ... }:

{
  networking = {
    domain = "vapor.systems";
    hostName = "test";
  };

  _module.args.nixinate = {
    host = "199.247.6.180";
    sshUser = "audron";
    buildOn = "remote";
    substituteOnTarget = true;
    hermetic = false;
  };
}