all repos — nixfiles @ 7f73174893bc51d3c701f4a4cda515492641d270

System and user configuration, managed by nix and home-manager

system/settings/hardware/trezor.nix (view raw)

{
  config,
  lib,
  pkgs,
  ...
}:
{
  services.trezord.enable = true;
  environment.systemPackages = with pkgs; [
    (python3.withPackages (
      ps: with ps; [
        trezor_agent
        wheel
      ]
    ))
    trezor-suite
  ];
}