reformat all nix code
1 file changed, 13 insertions(+), 6 deletions(-)
changed files
M system/settings/hardware/trezor.nix → system/settings/hardware/trezor.nix
@@ -1,11 +1,18 @@ -{ config -, lib -, pkgs -, ... -}: { +{ + config, + lib, + pkgs, + ... +}: +{ services.trezord.enable = true; environment.systemPackages = with pkgs; [ - (python3.withPackages (ps: with ps; [ trezor_agent wheel ])) + (python3.withPackages ( + ps: with ps; [ + trezor_agent + wheel + ] + )) trezor-suite ]; }