services.davfs2.settings
NixOS option
Extra settings appended to the configuration of davfs2. See davfs2.conf(5) for available settings.
type: open submodule of attribute set of attribute set of (boolean or signed integer or string or attribute set of (boolean or signed integer or string))Default
{ }Example
declared in: nixos/modules/services/network-filesystems/davfs2.nixView source on NixOS/nixpkgs →{
globalSection = {
proxy = "foo.bar:8080";
use_locks = false;
};
sections = {
"/media/dav" = {
use_locks = true;
};
"/home/otto/mywebspace" = {
gui_optimize = true;
};
};
}