2017-02-08 16:18:22 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.trezord;
|
|
|
|
in {
|
2019-08-20 19:25:51 +01:00
|
|
|
|
|
|
|
### docs
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
doc = ./trezord.xml;
|
|
|
|
};
|
2020-08-07 14:43:58 +01:00
|
|
|
|
2017-02-08 16:18:22 +00:00
|
|
|
### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
services.trezord = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Enable Trezor bridge daemon, for use with Trezor hardware bitcoin wallets.
|
|
|
|
'';
|
|
|
|
};
|
2019-08-16 15:58:48 +01:00
|
|
|
|
|
|
|
emulator.enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Enable Trezor emulator support.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
emulator.port = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 21324;
|
|
|
|
description = ''
|
|
|
|
Listening port for the Trezor emulator.
|
|
|
|
'';
|
|
|
|
};
|
2017-02-08 16:18:22 +00:00
|
|
|
};
|
|
|
|
};
|
2020-08-07 14:43:58 +01:00
|
|
|
|
2017-02-08 16:18:22 +00:00
|
|
|
### implementation
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2019-10-27 13:17:02 +00:00
|
|
|
services.udev.packages = [ pkgs.trezor-udev-rules ];
|
2017-02-08 16:18:22 +00:00
|
|
|
|
|
|
|
systemd.services.trezord = {
|
2020-12-27 18:47:43 +00:00
|
|
|
description = "Trezor Bridge";
|
2021-02-27 11:33:03 +00:00
|
|
|
after = [ "network.target" ];
|
2017-02-08 16:18:22 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
path = [];
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "simple";
|
2019-08-16 15:58:48 +01:00
|
|
|
ExecStart = "${pkgs.trezord}/bin/trezord-go ${optionalString cfg.emulator.enable "-e ${builtins.toString cfg.emulator.port}"}";
|
2017-02-08 16:18:22 +00:00
|
|
|
User = "trezord";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
users.users.trezord = {
|
|
|
|
group = "trezord";
|
|
|
|
description = "Trezor bridge daemon user";
|
2019-10-12 21:25:28 +01:00
|
|
|
isSystemUser = true;
|
2017-02-08 16:18:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
users.groups.trezord = {};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|