nixos/amazon-image: avoid top-level with statements

This commit is contained in:
Philip Taron
2024-07-15 22:02:39 -07:00
parent 3ba72e2834
commit 2e17c4a4da
@@ -6,9 +6,8 @@
{ config, lib, pkgs, ... }:
with lib;
let
inherit (lib) mkDefault mkIf;
cfg = config.ec2;
in
@@ -107,5 +106,5 @@ in
# (e.g. it depends on GTK).
services.udisks2.enable = false;
};
meta.maintainers = with maintainers; [ arianvp ];
meta.maintainers = with lib.maintainers; [ arianvp ];
}