Get GitLab runners running again

This commit is contained in:
Greg Hellings
2024-04-02 15:02:04 -05:00
parent 5cc4d9c43d
commit b2e8d10c5c
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -17,6 +17,8 @@ lib.attrsets.recursiveUpdate {
nixpkgs.overlays = overlays; nixpkgs.overlays = overlays;
greg.tailscale.enable = true;
age = { age = {
identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ]; identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
secrets.runner-reg = { secrets.runner-reg = {
+2
View File
@@ -6,6 +6,7 @@ let
container = input: (lib.attrsets.recursiveUpdate { container = input: (lib.attrsets.recursiveUpdate {
bindMounts."/etc/ssh".hostPath = "/etc/ssh"; # For agenix secrets bindMounts."/etc/ssh".hostPath = "/etc/ssh"; # For agenix secrets
enableTun = true;
privateNetwork = true; privateNetwork = true;
} input); } input);
in { in {
@@ -59,6 +60,7 @@ in {
#################### QEmu Runner #################################################### #################### QEmu Runner ####################################################
##################################################################################### #####################################################################################
containers.gitlab-runner-qemu = container { containers.gitlab-runner-qemu = container {
autoStart = true;
bindMounts = { bindMounts = {
"/dev/kvm" = { "/dev/kvm" = {
hostPath = "/dev/kvm"; hostPath = "/dev/kvm";