about summary refs log tree commit diff
path: root/nixos/tests/trezord.nix
diff options
context:
space:
mode:
author1000101 <b1000101@pm.me>2020-06-12 12:42:41 +0200
committer1000101 <b1000101@pm.me>2020-06-26 16:38:27 +0200
commit6c3b36212a0be328caeb95e332847e4129ec2176 (patch)
tree7c602d0d3cdc350d857ab423b6355dcac9752f5f /nixos/tests/trezord.nix
parent64cf1e79dd77378046bf802e84c432ccf205a62f (diff)
maintainers: fix previously uncaught name issues
Diffstat (limited to 'nixos/tests/trezord.nix')
-rw-r--r--nixos/tests/trezord.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/nixos/tests/trezord.nix b/nixos/tests/trezord.nix
index 8d908a5224923..67646496ff97c 100644
--- a/nixos/tests/trezord.nix
+++ b/nixos/tests/trezord.nix
@@ -1,9 +1,8 @@
 import ./make-test-python.nix ({ pkgs, ... }: {
   name = "trezord";
-  meta = with pkgs.stdenv.lib.maintainers; {
-    maintainers = [ mmahut "1000101" ];
+  meta = with pkgs.stdenv.lib; {
+    maintainers = with maintainers; [ mmahut maintainers."1000101" ];
   };
-
   nodes = {
     machine = { ... }: {
       services.trezord.enable = true;