mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
0a37316d6c
This commit replaces a lot of usages of `mkOption` with the package type, to be `mkPackageOption`, in order to reduce the amount of code.
34 lines
791 B
Nix
34 lines
791 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.services.spice-webdavd;
|
|
in
|
|
{
|
|
options = {
|
|
services.spice-webdavd = {
|
|
enable = mkEnableOption (lib.mdDoc "the spice guest webdav proxy daemon");
|
|
|
|
package = mkPackageOption pkgs "phodav" { };
|
|
};
|
|
};
|
|
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
}
|