aboutsummaryrefslogtreecommitdiff
path: root/profiles/remote-builder.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-08-12 10:18:59 -0700
committerFranck Cuny <franck@fcuny.net>2025-08-12 10:18:59 -0700
commit2fd25ace93bb7057ff5e0044907b0f3b431883a8 (patch)
tree0718521ea133e817ab0360d9fff342243f56659e /profiles/remote-builder.nix
parentadd profiles for security, firewalls, and users (diff)
downloadinfra-2fd25ace93bb7057ff5e0044907b0f3b431883a8.tar.gz
add profiles for darwin and remote builder
Diffstat (limited to 'profiles/remote-builder.nix')
-rw-r--r--profiles/remote-builder.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/profiles/remote-builder.nix b/profiles/remote-builder.nix
deleted file mode 100644
index 50d3e84..0000000
--- a/profiles/remote-builder.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ config, ... }:
-{
- nix.buildMachines = [
- {
- hostName = "builder";
- sshUser = "builder";
-
- protocol = "ssh";
-
- sshKey = config.age.secrets.ssh-remote-builder.path;
-
- systems = [
- "x86_64-linux"
- ];
-
- maxJobs = 1;
-
- supportedFeatures = [
- "nixos-test"
- ];
- }
- ];
-
- nix.distributedBuilds = true;
-
- programs.ssh.extraConfig = ''
- Host builder
- User builder
- HostName vm-synology
- IdentityFile ${config.age.secrets.ssh-remote-builder.path}
- '';
-}