From 256118c2b49b02127a9651dc521e449b36e57368 Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 16 May 2022 23:13:57 +0200 Subject: [PATCH] enable nix-builder --- hosts/VEGAS/system.nix | 1 + hosts/prophet/system.nix | 1 + modules/nix-builder/default.nix | 2 ++ 3 files changed, 4 insertions(+) diff --git a/hosts/VEGAS/system.nix b/hosts/VEGAS/system.nix index 411f0ed..a0a06ae 100644 --- a/hosts/VEGAS/system.nix +++ b/hosts/VEGAS/system.nix @@ -44,6 +44,7 @@ ./services/wireguard-server aspect.modules.hercules-ci-agent aspect.modules.hyprspace + aspect.modules.nix-builder ] # TODO: fix users # ++ (import ../../users "server").groups.admin diff --git a/hosts/prophet/system.nix b/hosts/prophet/system.nix index 606f2d2..9a371de 100644 --- a/hosts/prophet/system.nix +++ b/hosts/prophet/system.nix @@ -15,6 +15,7 @@ aspect.modules.hercules-ci-agent aspect.modules.hyprspace aspect.modules.ipfs + aspect.modules.nix-builder ] diff --git a/modules/nix-builder/default.nix b/modules/nix-builder/default.nix index 758fd66..430df41 100644 --- a/modules/nix-builder/default.nix +++ b/modules/nix-builder/default.nix @@ -10,5 +10,7 @@ openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBa9gDXWdp7Kqzbjz9Zchu91ZoYcBD6AbjvuktYA//yg" ]; + group = "nix"; }; + users.groups.nix = {}; }