aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/default.nix1
-rw-r--r--modules/gitlab/default.nix24
2 files changed, 0 insertions, 25 deletions
diff --git a/modules/default.nix b/modules/default.nix
index a288345..4865c38 100644
--- a/modules/default.nix
+++ b/modules/default.nix
@@ -2,7 +2,6 @@
bgp = import ./bgp;
common = import ./common;
crypto = import ./crypto;
- gitlab = import ./gitlab;
hetzner = import ./hetzner;
image = import ./image;
kubernetes = import ./kubernetes;
diff --git a/modules/gitlab/default.nix b/modules/gitlab/default.nix
deleted file mode 100644
index 078b467..0000000
--- a/modules/gitlab/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
- services.gitlab-runner = {
- enable = true;
- services.shell = {
- registrationConfigFile = "/etc/gitlab/runner-registration";
- executor = "shell";
- tagList = [ "shell" "claranet-de-nix-runner" "nix" ];
- };
- };
-
- systemd.services.gitlab-runner = {
- serviceConfig = {
- # Set `DynamicUser` under `systemd.services.gitlab-runner.serviceConfig`
- # to `lib.mkForce false` in your configuration to run this service as root.
- # You can also set `User` and `Group` options to run this service as desired user.
- # Make sure to restart service or changes won't apply.
- DynamicUser = lib.mkForce false;
- # User = "nixbuilder";
- # Group = "users";
- };
- };
-}