m 2 udpt: init
This commit is contained in:
parent
3d016e470f
commit
e14b4f8854
31
2configs/udpt.nix
Normal file
31
2configs/udpt.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{pkgs, ...}:
|
||||||
|
|
||||||
|
let
|
||||||
|
cfgfile = pkgs.writeText "udpt-config" ''
|
||||||
|
[db]
|
||||||
|
driver=sqlite3
|
||||||
|
param=:memory:
|
||||||
|
|
||||||
|
[tracker]
|
||||||
|
is_dynamic=yes
|
||||||
|
port=6969
|
||||||
|
threads=5
|
||||||
|
allow_remotes=yes
|
||||||
|
allow_iana_ips=no
|
||||||
|
announce_interval=1800
|
||||||
|
cleanup_interval=120
|
||||||
|
|
||||||
|
[apiserver]
|
||||||
|
enable=yes
|
||||||
|
|
||||||
|
[logging]
|
||||||
|
filename=-
|
||||||
|
level=warning
|
||||||
|
'';
|
||||||
|
in {
|
||||||
|
makefu.udpt = {
|
||||||
|
enable = true;
|
||||||
|
inherit cfgfile;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue