31 lines
451 B
Nix
31 lines
451 B
Nix
{
|
|
name,
|
|
nodes,
|
|
pkgs,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../../common/incus.nix
|
|
];
|
|
deployment = {
|
|
targetHost = "192.168.1.69";
|
|
targetPort = 22;
|
|
targetUser = "phoenix";
|
|
buildOnTarget = true;
|
|
keys.phoenix.keyFile = "/home/nixos/.ssh/id_ed25519.pub";
|
|
tags = [
|
|
"homelab"
|
|
];
|
|
};
|
|
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../modules/common.nix
|
|
./networking.nix
|
|
./users.nix
|
|
];
|
|
}
|