about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-17T16·33+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-20T10·26+0100
commit60b8b83376df8d1007137b6920ee09ed8cdcc3ac (patch)
treeed0e95578279eb8cd0fa2be1e33d9dfc32955117 /nixos
parent890d4606cfafa933ab2fca830b3b18eb122d1428 (diff)
Enable services.buildkite-agents
Instead of enabling `buildkite-agent` ad hoc, use NixOS to configure it.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/socrates/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/nixos/socrates/default.nix b/nixos/socrates/default.nix
index 3891123850d5..f638b83d66fb 100644
--- a/nixos/socrates/default.nix
+++ b/nixos/socrates/default.nix
@@ -50,13 +50,6 @@ in {
       shell = pkgs.fish;
     };
 
-    users.buildkite-agent = {
-      # TODO: Consider setting this to `false` when you better understand the
-      # implications.
-      isNormalUser = true;
-      extraGroups = [ "git" ];
-    };
-
     users.git = {
       group = "git";
       isNormalUser = false;
@@ -115,6 +108,13 @@ in {
     rootUrl = "https://git.wpcarro.dev/";
   };
 
+  services.buildkite-agents = {
+    socrates = {
+      enable = true;
+      tokenPath = "/etc/secrets/buildkite-agent-token";
+    };
+  };
+
   # systemd.services.monzo-token-server = {
   #   enable = true;
   #   description = "Ensure my Monzo access token is valid";