13 lines
252 B
Nix
13 lines
252 B
Nix
|
let pkgs = import <nixpkgs> {}; in
|
||
|
{
|
||
|
"igctf-test3" = { config, pkgs, ... }: {
|
||
|
deployment.targetHost = "51.15.125.82";
|
||
|
deployment.targetUser = "root";
|
||
|
|
||
|
imports = [
|
||
|
./configuration.nix
|
||
|
./containers.nix
|
||
|
];
|
||
|
};
|
||
|
}
|