mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
63 lines
1.6 KiB
Nix
63 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";
|
|
};
|
|
};
|
|
};
|
|
}
|