Fixed https apt proxy to same host as http
diff --git a/linux/files/95proxies b/linux/files/95proxies
index 5bbdaea..0f689c9 100644
--- a/linux/files/95proxies
+++ b/linux/files/95proxies
@@ -1,4 +1,4 @@
 {%- from "linux/map.jinja" import network with context %}
 Acquire::http::proxy "http://{{ network.proxy.host }}:{{ network.proxy.port }}/";
 Acquire::ftp::proxy "ftp://{{ network.proxy.host }}:{{ network.proxy.port }}/";
-Acquire::https::proxy "https://{{ network.proxy.host }}:{{ network.proxy.port }}/";
\ No newline at end of file
+Acquire::https::proxy "http://{{ network.proxy.host }}:{{ network.proxy.port }}/";