forked from mirrors/nixpkgs
nixos/trilium-server: noBackup option
This commit is contained in:
parent
7cb492fb13
commit
b9e2b878c5
|
@ -9,6 +9,7 @@ let
|
|||
|
||||
# Disable automatically generating desktop icon
|
||||
noDesktopIcon=true
|
||||
noBackup=${cfg.noBackup}
|
||||
|
||||
[Network]
|
||||
# host setting is relevant only for web deployments - set the host on which the server will listen
|
||||
|
@ -40,6 +41,14 @@ in
|
|||
'';
|
||||
};
|
||||
|
||||
noBackup = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = ''
|
||||
Disable periodic database backups.
|
||||
'';
|
||||
};
|
||||
|
||||
host = mkOption {
|
||||
type = types.str;
|
||||
default = "127.0.0.1";
|
||||
|
|
Loading…
Reference in a new issue