mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
39 lines
944 B
Nix
39 lines
944 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
let
|
||
|
cfg = config.services.spice-webdavd;
|
||
|
in
|
||
|
{
|
||
|
options = {
|
||
|
services.spice-webdavd = {
|
||
|
enable = mkEnableOption "the spice guest webdav proxy daemon";
|
||
|
|
||
|
package = mkOption {
|
||
|
default = pkgs.phodav;
|
||
|
defaultText = literalExpression "pkgs.phodav";
|
||
|
type = types.package;
|
||
|
description = "spice-webdavd provider package to use.";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
# 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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|