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

This commit is contained in:
Philip Taron 2024-07-15 21:46:25 -07:00
parent 3ba72e2834
commit 2e17c4a4da
No known key found for this signature in database

View File

@ -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 ];
}