From dba3a46ebd5713e811b02ffe0e1b4d8fb441a14e Mon Sep 17 00:00:00 2001 From: Jean-Pierre PRUNARET Date: Sat, 22 Oct 2016 15:37:20 +0200 Subject: [PATCH] fichier inutile --- public/hydra.nix | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 public/hydra.nix diff --git a/public/hydra.nix b/public/hydra.nix deleted file mode 100644 index 253902a..0000000 --- a/public/hydra.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ config, pkgs, ... }: - -{ - ####################################### HYDRA - - virtualisation.virtualbox.host.enable = true; - - # une fois installé : - # 1. créer chef SSH : ssh-keygen -C "hydra@pedro.dubronetwork.fr" -N "" -f /etc/nixos/id_buildfarm - # 2. récupérer la clef publique du serveur ssh : ssh-keyscan localhost + l'ajouter dans les knownHosts - # 2. créer un utilisateur - # su - hydra - # hydra-create-user jpierre03 --password toto --role 'admin' - # accessible à hydra.pedro.dubnronetwork.fr - services.hydra = { - enable = true; - hydraURL = "http://hydra.pedro.dubronetwork.fr"; - notificationSender = "hydra@${config.networking.hostName}"; - listenHost = "localhost"; - minimumDiskFree = 50; # Go - }; - - programs.ssh.knownHosts."pedro.dubronetwork.fr".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM7fjo2ysLqlfSo6BKnc6I6m1ayoPrbwEEyTKZmUzsOD"; - nix = { - distributedBuilds = true; - buildMachines = [ - { hostName = "pedro.dubronetwork.fr"; maxJobs = 2; speedFactor = 10; sshKey = "/etc/nixos/id_buildfarm"; sshUser = "root"; system = "x86_64-linux"; } - ]; - extraOptions = "auto-optimise-store = true"; - }; - # nix.gc = { - # automatic = true; - #}; -}