Remilia: more updates

services: remove redundant nginx confs
and some very minor changes
This commit is contained in:
2022-03-09 11:24:16 +05:30
parent 53b18802dd
commit 26f2fdfd0c
4 changed files with 173 additions and 195 deletions

14
modules/x86builder.nix Normal file
View File

@@ -0,0 +1,14 @@
{config, ...}:
{
nix.buildMachines = [ {
hostName = "Satori";
systems = ["x86_64-linux" "aarch64-linux"];
maxJobs = 4;
speedFactor = 2;
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
}] ;
nix.distributedBuilds = true;
nix.extraOptions = ''
builders-use-substitutes = true
'';
}