26 lines
No EOL
516 B
Nix
26 lines
No EOL
516 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
|
};
|
|
outputs = { nixpkgs, ... }: {
|
|
colmena = {
|
|
meta = {
|
|
nixpkgs = import nixpkgs {
|
|
system = "x86_64-linux";
|
|
};
|
|
};
|
|
|
|
testhost = {
|
|
deployment = {
|
|
targetHost = "192.168.178.50";
|
|
targetPort = 22;
|
|
targetUser = "root";
|
|
};
|
|
networking.hostName = "testhost";
|
|
imports = [
|
|
./configs/container_config.nix
|
|
];
|
|
};
|
|
};
|
|
};
|
|
} |