mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +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
142 lines
4 KiB
Nix
142 lines
4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.bee;
|
|
format = pkgs.formats.yaml { };
|
|
configFile = format.generate "bee.yaml" cfg.settings;
|
|
in
|
|
{
|
|
meta = {
|
|
# doc = ./bee.xml;
|
|
maintainers = [ ];
|
|
};
|
|
|
|
### interface
|
|
|
|
options = {
|
|
services.bee = {
|
|
enable = lib.mkEnableOption "Ethereum Swarm Bee";
|
|
|
|
package = lib.mkPackageOption pkgs "bee" {
|
|
example = "bee-unstable";
|
|
};
|
|
|
|
settings = lib.mkOption {
|
|
type = format.type;
|
|
description = ''
|
|
Ethereum Swarm Bee configuration. Refer to
|
|
<https://gateway.ethswarm.org/bzz/docs.swarm.eth/docs/installation/configuration/>
|
|
for details on supported values.
|
|
'';
|
|
};
|
|
|
|
daemonNiceLevel = lib.mkOption {
|
|
type = lib.types.int;
|
|
default = 0;
|
|
description = ''
|
|
Daemon process priority for bee.
|
|
0 is the default Unix process priority, 19 is the lowest.
|
|
'';
|
|
};
|
|
|
|
user = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "bee";
|
|
description = ''
|
|
User the bee binary should execute under.
|
|
'';
|
|
};
|
|
|
|
group = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "bee";
|
|
description = ''
|
|
Group the bee binary should execute under.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
### implementation
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
assertions = [
|
|
{
|
|
assertion = (lib.hasAttr "password" cfg.settings) != true;
|
|
message = ''
|
|
`services.bee.settings.password` is insecure. Use `services.bee.settings.password-file` or `systemd.services.bee.serviceConfig.EnvironmentFile` instead.
|
|
'';
|
|
}
|
|
{
|
|
assertion =
|
|
(lib.hasAttr "swap-endpoint" cfg.settings) || (cfg.settings.swap-enable or true == false);
|
|
message = ''
|
|
In a swap-enabled network a working Ethereum blockchain node is required. You must specify one using `services.bee.settings.swap-endpoint`, or disable `services.bee.settings.swap-enable` = false.
|
|
'';
|
|
}
|
|
];
|
|
|
|
services.bee.settings = {
|
|
data-dir = lib.mkDefault "/var/lib/bee";
|
|
password-file = lib.mkDefault "/var/lib/bee/password";
|
|
clef-signer-enable = lib.mkDefault true;
|
|
swap-endpoint = lib.mkDefault "https://rpc.slock.it/goerli";
|
|
};
|
|
|
|
systemd.packages = [ cfg.package ]; # include the upstream bee.service file
|
|
|
|
systemd.tmpfiles.rules = [
|
|
"d '${cfg.settings.data-dir}' 0750 ${cfg.user} ${cfg.group}"
|
|
];
|
|
|
|
systemd.services.bee = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
Nice = cfg.daemonNiceLevel;
|
|
User = cfg.user;
|
|
Group = cfg.group;
|
|
ExecStart = [
|
|
"" # this hides/overrides what's in the original entry
|
|
"${cfg.package}/bin/bee --config=${configFile} start"
|
|
];
|
|
};
|
|
|
|
preStart = with cfg.settings; ''
|
|
if ! test -f ${password-file}; then
|
|
< /dev/urandom tr -dc _A-Z-a-z-0-9 2> /dev/null | head -c32 | install -m 600 /dev/stdin ${password-file}
|
|
echo "Initialized ${password-file} from /dev/urandom"
|
|
fi
|
|
if [ ! -f ${data-dir}/keys/libp2p.key ]; then
|
|
${cfg.package}/bin/bee init --config=${configFile} >/dev/null
|
|
echo "
|
|
Logs: journalctl -f -u bee.service
|
|
|
|
Bee has SWAP enabled by default and it needs ethereum endpoint to operate.
|
|
It is recommended to use external signer with bee.
|
|
Check documentation for more info:
|
|
- SWAP https://docs.ethswarm.org/docs/installation/manual#swap-bandwidth-incentives
|
|
|
|
After you finish configuration run 'sudo bee-get-addr'."
|
|
fi
|
|
'';
|
|
};
|
|
|
|
users.users = lib.optionalAttrs (cfg.user == "bee") {
|
|
bee = {
|
|
group = cfg.group;
|
|
home = cfg.settings.data-dir;
|
|
isSystemUser = true;
|
|
description = "Daemon user for Ethereum Swarm Bee";
|
|
};
|
|
};
|
|
|
|
users.groups = lib.optionalAttrs (cfg.group == "bee") {
|
|
bee = { };
|
|
};
|
|
};
|
|
}
|