1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-18 23:50:07 +03:00
nixpkgs/nixos/modules/services/misc/spice-webdavd.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
788 B
Nix
Raw Normal View History

2022-08-13 17:41:12 -05:00
{
config,
pkgs,
lib,
...
}:
let
cfg = config.services.spice-webdavd;
in
{
options = {
services.spice-webdavd = {
enable = lib.mkEnableOption "the spice guest webdav proxy daemon";
2022-08-13 17:41:12 -05:00
package = lib.mkPackageOption pkgs "phodav" { };
2022-08-13 17:41:12 -05:00
};
};
config = lib.mkIf cfg.enable {
2022-08-13 17:41:12 -05:00
# ensure the webdav fs this exposes can actually be mounted
services.davfs2.enable = true;
# add the udev rule which starts the proxy when the spice socket is present
services.udev.packages = [ cfg.package ];
systemd.services.spice-webdavd = {
description = "spice-webdav proxy daemon";
serviceConfig = {
Type = "simple";
ExecStart = "${cfg.package}/bin/spice-webdavd -p 9843";
Restart = "on-success";
};
};
};
}