diff --git a/nixos/modules/virtualisation/azure-agent.nix b/nixos/modules/virtualisation/azure-agent.nix index 5b3b7080ea68..8903bf0985a2 100644 --- a/nixos/modules/virtualisation/azure-agent.nix +++ b/nixos/modules/virtualisation/azure-agent.nix @@ -11,7 +11,6 @@ let ''; in - { ###### interface @@ -35,13 +34,9 @@ in config = lib.mkIf cfg.enable { assertions = [{ - assertion = pkgs.stdenv.hostPlatform.isx86; - message = "Azure not currently supported on ${pkgs.stdenv.hostPlatform.system}"; - } - { - assertion = config.networking.networkmanager.enable == false; - message = "Windows Azure Linux Agent is not compatible with NetworkManager"; - }]; + assertion = config.networking.networkmanager.enable == false; + message = "Windows Azure Linux Agent is not compatible with NetworkManager"; + }]; boot.initrd.kernelModules = [ "ata_piix" ]; networking.firewall.allowedUDPPorts = [ 68 ];