feat: enable hydra
This commit is contained in:
parent
9e9130c05e
commit
1de7b13e56
2 changed files with 22 additions and 13 deletions
|
|
@ -93,5 +93,9 @@
|
|||
nixosModules = {
|
||||
automapaper = ./modules/automapaper;
|
||||
};
|
||||
hydraJobs = {
|
||||
inherit (self)
|
||||
nixosConfigurations;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -81,19 +81,7 @@
|
|||
# };
|
||||
|
||||
# Enable the OpenSSH daemon.
|
||||
services = {
|
||||
openssh = {
|
||||
enable = true;
|
||||
settings.PasswordAuthentication = false;
|
||||
settings.KbdInteractiveAuthentication = false;
|
||||
};
|
||||
nix-serve = {
|
||||
enable = true;
|
||||
secretKeyFile = "/var/cache-priv-key.pem";
|
||||
bindAddress = "127.0.0.1";
|
||||
port = 22332;
|
||||
};
|
||||
};
|
||||
services = { };
|
||||
|
||||
programs.zsh.enable = true;
|
||||
|
||||
|
|
@ -157,6 +145,23 @@
|
|||
};
|
||||
|
||||
services = {
|
||||
openssh = {
|
||||
enable = true;
|
||||
settings.PasswordAuthentication = false;
|
||||
settings.KbdInteractiveAuthentication = false;
|
||||
};
|
||||
nix-serve = {
|
||||
enable = true;
|
||||
secretKeyFile = "/var/cache-priv-key.pem";
|
||||
bindAddress = "127.0.0.1";
|
||||
port = 22332;
|
||||
};
|
||||
hydra = {
|
||||
enable = true;
|
||||
hydraURL = "http://localhost:3000";
|
||||
buildMachinesFiles = [ ];
|
||||
useSubstitutes = true;
|
||||
};
|
||||
nginx =
|
||||
let
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue