This commit is contained in:
Lennart J. Kurzweg (Nx2)
2026-05-02 23:58:31 +02:00
parent b17f7d95b6
commit ae9ae15f3a
2 changed files with 20 additions and 0 deletions

19
system-modules/davfs.nix Normal file
View File

@@ -0,0 +1,19 @@
{ pkgs, ... }@all: with all; let
# user = "lennart";
in {
services.davfs2 = {
enable = true;
settings = {
globalSection = {
use_locks = true;
};
sections = {
"${hyper.home}/webdav" = {
gui_optimize = true;
};
};
};
};
users.users."${hyper.user}".extraGroups = [ "davfs2" ];
}