diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-10-17 04:00:39 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-10-17 04:15:32 +0200 |
commit | 48d18fb5174c82c69e84859fe65f1ee8037fd981 (patch) | |
tree | d09e7bb3a193a65f25e91a9d3323650a24ab21b1 /modules/environments | |
parent | Update lockfile (diff) | |
download | Rory-Open-Architecture-48d18fb5174c82c69e84859fe65f1ee8037fd981.tar.xz |
Desktop stuff
Diffstat (limited to 'modules/environments')
-rwxr-xr-x | modules/environments/home.nix | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/modules/environments/home.nix b/modules/environments/home.nix index 9bfb80e..0658abb 100755 --- a/modules/environments/home.nix +++ b/modules/environments/home.nix @@ -3,20 +3,24 @@ { nix = { distributedBuilds = true; - - buildMachines = [ - #"self" = { - # - #}; +# + buildMachines = builtins.filter (machine: !builtins.any (ip: ip == machine.hostName) (builtins.map (iface: iface.ipv4.addresses) (builtins.attrValues config.networking.interfaces))) [ { systems = [ "x86_64-linux" "i686-linux" ]; hostName = "192.168.0.3"; sshUser = "Rory"; sshKey = "/home/Rory/.ssh/id_ed25519"; maxJobs = 6; - #cores = 2; speedFactor = 43200; } + { + systems = [ "x86_64-linux" "i686-linux" ]; + hostName = "192.168.0.59"; + sshUser = "Rory"; + sshKey = "/home/Rory/.ssh/id_ed25519"; + maxJobs = 2; + speedFactor = 16000; + } ]; #ssh://Rory@192.168.0.3 x86_64-linux,i686-linux /home/Rory/.ssh/id_ed25519 12 1 - - - @@ -35,6 +39,7 @@ "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" "numtide.cachix.org-1:2ps1kLBUWjxIneOy1Ik6cQjb41X0iXVXeHigGmycPPE=" ]; + trusted-users = [ "root" "@wheel" "Rory" ]; }; }; |