tomate: add ifsr cache

This commit is contained in:
Rouven Seifert 2024-02-25 23:26:13 +01:00
parent 794b565e07
commit ae74749c28
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09

View file

@ -17,11 +17,17 @@
networking.hostName = "tomate"; # Define your hostname. networking.hostName = "tomate"; # Define your hostname.
networking.nftables.enable = true; networking.nftables.enable = true;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary nix = {
# networking.proxy.default = "http://user:password@proxy:port/"; settings = {
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; substituters = [
"https://cache.ifsr.de"
];
trusted-public-keys = [
"cache.ifsr.de:y55KBAMF4YkjIzXwYOKVk9fcQS+CZ9RM1zAAMYQJtsg="
];
};
};
# Enable networking # Enable networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;