mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
12 lines
283 B
Nix
12 lines
283 B
Nix
{ config, lib, ... }: {
|
|
deploy.tf = {
|
|
resources.${config.networking.hostName} = {
|
|
provider = "null";
|
|
type = "resource";
|
|
connection = {
|
|
port = lib.head config.services.openssh.ports;
|
|
host = config.networks.internet.ipv4;
|
|
};
|
|
};
|
|
};
|
|
}
|