nixos/machines/test01.nix

19 lines
298 B
Nix

{ pkgs, ... }:
{
imports = [
# applications for this particular server
../applications/firewall.nix
];
deployment = {
targetHost = "test01.home.brendan.ie";
targetPort = 22;
targetUser = "root";
};
# this server is teh firewall
skynet_firewall.enable = true;
}