mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
58 lines
1.6 KiB
Nix
58 lines
1.6 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.ethercalc;
|
|
in {
|
|
options = {
|
|
services.ethercalc = {
|
|
enable = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = ''
|
|
ethercalc, an online collaborative spreadsheet server.
|
|
|
|
Persistent state will be maintained under
|
|
{file}`/var/lib/ethercalc`. Upstream supports using a
|
|
redis server for storage and recommends the redis backend for
|
|
intensive use; however, the Nix module doesn't currently support
|
|
redis.
|
|
|
|
Note that while ethercalc is a good and robust project with an active
|
|
issue tracker, there haven't been new commits since the end of 2020.
|
|
'';
|
|
};
|
|
|
|
package = mkPackageOption pkgs "ethercalc" { };
|
|
|
|
host = mkOption {
|
|
type = types.str;
|
|
default = "0.0.0.0";
|
|
description = "Address to listen on (use 0.0.0.0 to allow access from any address).";
|
|
};
|
|
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 8000;
|
|
description = "Port to bind to.";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.ethercalc = {
|
|
description = "Ethercalc service";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
ExecStart = "${cfg.package}/bin/ethercalc --host ${cfg.host} --port ${toString cfg.port}";
|
|
Restart = "always";
|
|
StateDirectory = "ethercalc";
|
|
WorkingDirectory = "/var/lib/ethercalc";
|
|
};
|
|
};
|
|
};
|
|
}
|