Fix mailserver DNS; Add local build machine; Add test Hydra jobs

This commit is contained in:
James Eversole 2023-06-30 19:35:17 -05:00
parent 16d8aa3dc6
commit 6d88b786c1
3 changed files with 20 additions and 1 deletions

View File

@ -25,6 +25,12 @@
{
devShell.x86_64-linux = shell.dev;
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixpkgs-fmt;
hydraJobs = {
devshell = shell.dev;
formatter = shell.packages.x86_64-linux.format;
};
packages = shell.packages;
nixosConfigurations = {

View File

@ -10,6 +10,12 @@
}
}
mail.matri.cx {
template IN A {
answer "{{ .Name }} 0 IN A 149.28.112.101"
}
}
*.matri.cx {
template IN A {
answer "{{ .Name }} 0 IN A 192.168.0.130"

View File

@ -1,6 +1,13 @@
{ ... }: {
nix = {
buildMachines = [ ];
buildMachines = [
{
hostName = "localhost";
system = "x86_64-linux";
supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ];
maxJobs = 8;
}
];
distributedBuilds = false;
settings = {
auto-optimise-store = false; # https://github.com/NixOS/nix/issues/7273