my laptops nixos configuration, hopefully less messy this time (but still a lil' messy)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
375B

  1. {
  2. services.hydra = {
  3. enable = true;
  4. hydraURL = "http://localhost:3000";
  5. notificationSender = "hydra@localhost";
  6. # buildMachinesFiles = [];
  7. useSubstitutes = true;
  8. };
  9. nix.buildMachines = [
  10. { hostName = "localhost";
  11. system = "x86_64-linux";
  12. supportedFeatures = ["kvm" "nixos-test" "big-parallel" "benchmark"];
  13. maxJobs = 8;
  14. }
  15. ];
  16. }