Files
nixos-at-home/hosts/blade/default.nix
2026-05-31 11:03:24 +01:00

29 lines
405 B
Nix

{
name,
nodes,
pkgs,
lib,
inputs,
...
}:
{
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
];
}