Skip to content

Commit

Permalink
Add themisto user to build4
Browse files Browse the repository at this point in the history
Signed-off-by: Marko Kaapu <[email protected]>
  • Loading branch information
mkaapu committed Jan 30, 2024
1 parent 1b91a56 commit ef68483
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions hosts/ficolobuild/build4.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
# SPDX-FileCopyrightText: 2024 Technology Innovation Institute (TII)
# SPDX-License-Identifier: Apache-2.0
#
{...}: {
imports = [
{
self,
lib,
...
}: {
imports = lib.flatten [
(with self.nixosModules; [
user-themisto
])
# Import Ficolo x86 builder specific configuration
./builder.nix
];

# build4 specific configuration

networking.hostName = "build4";

# Trust Themisto Hydra user
nix.settings = {
trusted-users = ["root" "themisto"];
};
}

0 comments on commit ef68483

Please sign in to comment.