1
0
Fork 0
selfhostblocks/modules/blocks/davfs.nix

101 lines
2.9 KiB
Nix
Raw Normal View History

2023-10-22 06:41:17 +02:00
{ config, pkgs, lib, ... }:
let
cfg = config.shb.davfs;
2024-02-10 05:56:26 +01:00
shblib = pkgs.callPackage ../../lib {};
2023-10-22 06:41:17 +02:00
in
{
options.shb.davfs = {
mounts = lib.mkOption {
description = "List of mounts.";
2023-11-08 21:28:15 +01:00
default = [];
2023-10-22 06:41:17 +02:00
type = lib.types.listOf (lib.types.submodule {
options = {
remoteUrl = lib.mkOption {
type = lib.types.str;
description = "Webdav endpoint to connect to.";
example = "https://my.domain.com/dav";
};
mountPoint = lib.mkOption {
type = lib.types.str;
description = "Mount point to mount the webdav endpoint on.";
example = "/mnt";
};
username = lib.mkOption {
type = lib.types.str;
description = "Username to connect to the webdav endpoint.";
};
passwordFile = lib.mkOption {
type = lib.types.str;
description = "Password to connect to the webdav endpoint.";
};
uid = lib.mkOption {
type = lib.types.nullOr lib.types.int;
description = "User owner of the mount point.";
example = 1000;
default = null;
};
gid = lib.mkOption {
type = lib.types.nullOr lib.types.int;
description = "Group owner of the mount point.";
example = 1000;
default = null;
};
fileMode = lib.mkOption {
type = lib.types.nullOr lib.types.str;
description = "File creation mode";
example = "0664";
default = null;
};
directoryMode = lib.mkOption {
type = lib.types.nullOr lib.types.str;
description = "Directory creation mode";
example = "2775";
default = null;
};
automount = lib.mkOption {
type = lib.types.bool;
description = "Create a systemd automount unit";
default = true;
};
};
});
};
};
config = {
services.davfs2.enable = builtins.length cfg.mounts > 0;
systemd.mounts =
let
mkMountCfg = c: {
enable = true;
description = "Webdav mount point";
after = [ "network-online.target" ];
wants = [ "network-online.target" ];
what = c.remoteUrl;
where = c.mountPoint;
options = lib.concatStringsSep "," (
(lib.optional (!(isNull c.uid)) "uid=${toString c.uid}")
2024-09-03 07:07:13 +02:00
++ (lib.optional (!(isNull c.gid)) "gid=${toString c.gid}")
2023-10-22 06:41:17 +02:00
++ (lib.optional (!(isNull c.fileMode)) "file_mode=${toString c.fileMode}")
++ (lib.optional (!(isNull c.directoryMode)) "dir_mode=${toString c.directoryMode}")
);
type = "davfs";
2023-11-08 21:28:15 +01:00
mountConfig.TimeoutSec = 15;
2023-10-22 06:41:17 +02:00
};
in
2023-10-22 06:41:17 +02:00
map mkMountCfg cfg.mounts;
2023-10-22 06:41:17 +02:00
};
}