about summary refs log tree commit diff
path: root/nixos/tests/gnome-flashback.nix
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-04-29 22:17:04 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-05-12 22:29:26 -0300
commitb51ac3bd4c4dffb8b4e99df763b596fa0e9e41df (patch)
tree10f68f0fe4a5c79c15cfa76271ce369e4a9f3224 /nixos/tests/gnome-flashback.nix
parentdefe8992398696ff8ef97201e1536e371db2ab59 (diff)
nixos/tests/gnome-flashback.nix: get rid of `with lib`
Diffstat (limited to 'nixos/tests/gnome-flashback.nix')
-rw-r--r--nixos/tests/gnome-flashback.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/nixos/tests/gnome-flashback.nix b/nixos/tests/gnome-flashback.nix
index c97264e6928a0..70569db797ec9 100644
--- a/nixos/tests/gnome-flashback.nix
+++ b/nixos/tests/gnome-flashback.nix
@@ -1,12 +1,11 @@
 import ./make-test-python.nix ({ pkgs, lib, ...} : {
   name = "gnome-flashback";
-  meta = with lib; {
-    maintainers = teams.gnome.members ++ [ maintainers.chpatrick ];
-  };
+  meta.maintainers = lib.teams.gnome.members ++ [ lib.maintainers.chpatrick ];
 
-  nodes.machine = { nodes, ... }: let
-    user = nodes.machine.config.users.users.alice;
-  in
+  nodes.machine = { nodes, ... }:
+    let
+      user = nodes.machine.config.users.users.alice;
+    in
 
     { imports = [ ./common/user-account.nix ];