about summary refs log tree commit diff
path: root/nixos/modules/services/hardware
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2019-08-22 23:25:18 +0200
committerGitHub <noreply@github.com>2019-08-22 23:25:18 +0200
commitf4ca6e3dd1b08b1c5b8a59769d018df2db911fe7 (patch)
tree9745432f1ee003f419cbb702bd3cb02754aa89f8 /nixos/modules/services/hardware
parent6f4ab8702fa8b30746af2c49df710fcb3a575aec (diff)
parent20ea4b6dd37072f9c4d64c973f04b6ac5123d980 (diff)
downloadnixlib-f4ca6e3dd1b08b1c5b8a59769d018df2db911fe7.tar
nixlib-f4ca6e3dd1b08b1c5b8a59769d018df2db911fe7.tar.gz
nixlib-f4ca6e3dd1b08b1c5b8a59769d018df2db911fe7.tar.bz2
nixlib-f4ca6e3dd1b08b1c5b8a59769d018df2db911fe7.tar.lz
nixlib-f4ca6e3dd1b08b1c5b8a59769d018df2db911fe7.tar.xz
nixlib-f4ca6e3dd1b08b1c5b8a59769d018df2db911fe7.tar.zst
nixlib-f4ca6e3dd1b08b1c5b8a59769d018df2db911fe7.zip
Merge pull request #66722 from mmahut/trezord-emulator
trezord: adding emulator support (plus test)
Diffstat (limited to 'nixos/modules/services/hardware')
-rw-r--r--nixos/modules/services/hardware/trezord.nix18
1 files changed, 17 insertions, 1 deletions
diff --git a/nixos/modules/services/hardware/trezord.nix b/nixos/modules/services/hardware/trezord.nix
index 20bcbf83109e..62824ed7350a 100644
--- a/nixos/modules/services/hardware/trezord.nix
+++ b/nixos/modules/services/hardware/trezord.nix
@@ -22,6 +22,22 @@ in {
           Enable Trezor bridge daemon, for use with Trezor hardware bitcoin wallets.
         '';
       };
+
+      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.
+          '';
+      };
     };
   };
   
@@ -50,7 +66,7 @@ in {
       path = [];
       serviceConfig = {
         Type = "simple";
-        ExecStart = "${pkgs.trezord}/bin/trezord-go";
+        ExecStart = "${pkgs.trezord}/bin/trezord-go ${optionalString cfg.emulator.enable "-e ${builtins.toString cfg.emulator.port}"}";
         User = "trezord";
       };
     };