Fix mailserver DNS; Add local build machine; Add test Hydra jobs
This commit is contained in:
parent
16d8aa3dc6
commit
6d88b786c1
@ -25,6 +25,12 @@
|
|||||||
{
|
{
|
||||||
devShell.x86_64-linux = shell.dev;
|
devShell.x86_64-linux = shell.dev;
|
||||||
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixpkgs-fmt;
|
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;
|
packages = shell.packages;
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
|
@ -10,6 +10,12 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mail.matri.cx {
|
||||||
|
template IN A {
|
||||||
|
answer "{{ .Name }} 0 IN A 149.28.112.101"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
*.matri.cx {
|
*.matri.cx {
|
||||||
template IN A {
|
template IN A {
|
||||||
answer "{{ .Name }} 0 IN A 192.168.0.130"
|
answer "{{ .Name }} 0 IN A 192.168.0.130"
|
||||||
|
@ -1,6 +1,13 @@
|
|||||||
{ ... }: {
|
{ ... }: {
|
||||||
nix = {
|
nix = {
|
||||||
buildMachines = [ ];
|
buildMachines = [
|
||||||
|
{
|
||||||
|
hostName = "localhost";
|
||||||
|
system = "x86_64-linux";
|
||||||
|
supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ];
|
||||||
|
maxJobs = 8;
|
||||||
|
}
|
||||||
|
];
|
||||||
distributedBuilds = false;
|
distributedBuilds = false;
|
||||||
settings = {
|
settings = {
|
||||||
auto-optimise-store = false; # https://github.com/NixOS/nix/issues/7273
|
auto-optimise-store = false; # https://github.com/NixOS/nix/issues/7273
|
||||||
|
Loading…
x
Reference in New Issue
Block a user