17 lines
218 B
Nix
Executable File
17 lines
218 B
Nix
Executable File
{
|
|
lib,
|
|
config,
|
|
namespace,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
(lib.${namespace}.mkContainerService {
|
|
inherit config;
|
|
name = "guacd";
|
|
image = "guacamole/guacd";
|
|
internalPort = 4822;
|
|
})
|
|
];
|
|
}
|