this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(k3s): configure internal registry as mirror

+9 -1
+9 -1
infra/_modules/nixos/configuration.nix
··· 1 - { modulesPath, ... }: 1 + { modulesPath, pkgs, ... }: 2 2 3 3 { 4 4 imports = [ ··· 76 76 k3s_token = {}; 77 77 }; 78 78 }; 79 + 80 + environment.etc."rancher/k3s/registries.yaml".text = 81 + pkgs.lib.generators.toYAML { } { 82 + # SEe ./profiles/values/registry.yaml for registry service IP 83 + mirrors."registry.registry.svc.cluster.local".endpoint = [ 84 + "http://[fd6a:7c7b:3e12:100::f]:5000" 85 + ]; 86 + }; 79 87 80 88 system.stateVersion = "25.05"; 81 89 }