nixpkgs/nixos/modules/services/hardware/trezord.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1.4 KiB
Nix
Raw Normal View History

2017-02-08 16:18:22 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.trezord;
in {
2019-08-20 18:25:51 +00:00
### docs
meta = {
doc = ./trezord.md;
2019-08-20 18:25:51 +00:00
};
2017-02-08 16:18:22 +00:00
### interface
options = {
services.trezord = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
2017-02-08 16:18:22 +00:00
Enable Trezor bridge daemon, for use with Trezor hardware bitcoin wallets.
'';
};
2019-08-16 14:58:48 +00:00
emulator.enable = mkOption {
type = types.bool;
default = false;
description = ''
2019-08-16 14:58:48 +00:00
Enable Trezor emulator support.
'';
};
emulator.port = mkOption {
type = types.port;
default = 21324;
description = ''
2019-08-16 14:58:48 +00:00
Listening port for the Trezor emulator.
'';
};
2017-02-08 16:18:22 +00:00
};
};
2017-02-08 16:18:22 +00:00
### implementation
config = mkIf cfg.enable {
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";
after = [ "network.target" ];
2017-02-08 16:18:22 +00:00
wantedBy = [ "multi-user.target" ];
path = [];
serviceConfig = {
Type = "simple";
2019-08-16 14:58:48 +00: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 20:25:28 +00:00
isSystemUser = true;
2017-02-08 16:18:22 +00:00
};
users.groups.trezord = {};
};
}