1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
name: 'cfg-playground',
description: 'Playground for cfg',
homepage: 'https://git.jolheiser.com/cfg-playground',
output: {
nix: {
module: true,
},
},
flags: [
{
name: 'hostname',
description: 'tailnet hostname',
default: 'cfg',
type: 'string',
},
{
name: 'data-dir',
description: 'tsnet data directory',
default: '.tsnet',
type: 'string',
},
{
name: 'auth-key',
description: 'tsnet auth key',
type: 'string',
},
{
name: 'verbose',
description: 'Log verbosely',
type: 'bool',
},
],
}
|