7 lines
182 B
Nix
7 lines
182 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [ ./default.nix ];
|
|
deployment = {
|
|
tags = [ "server" "intel" "vps" "web" ];
|
|
targetHost = "178.156.139.49";
|
|
};
|
|
}
|