graphical, fly.toml: fixes

This commit is contained in:
emily 2024-10-10 18:06:11 +02:00
parent 1f8a1403d3
commit b32ddfa0a1
Signed by: emily
GPG key ID: F6F4C66207FCF995
3 changed files with 8 additions and 6 deletions

View file

@ -17,8 +17,8 @@
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
sshKey = config.sops.secrets."services/hydra/id_ed25519_hydra".path;
}
] ++ lib.forEach [ "03" "04" ] (num: {
hostName = "build-worker-${num}.nyantec.com";
{
hostName = "build-worker-04.nyantec.com";
sshUser = "nix-ssh";
maxJobs = 4;
speedFactor = 18;
@ -26,12 +26,12 @@
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" "gccarch-x86-64" "gccarch-x86-64-v2" "gccarch-x86-64-v3" ];
sshKey = config.sops.secrets."services/hydra/id_ed25519_hydra".path;
}
) ++ lib.forEach [ "01" "02" "05" "06" ] (num: {
] ++ lib.forEach [ "01" "02" "03" "05" ] (num: {
hostName = "build-worker-${num}";
sshUser = "root";
maxJobs = 4;
speedFactor = 20;
systems = [ "x86_64-linux" ];
systems = [ "i686-linux" "x86_64-linux" ];
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "gccarch-x86-64" "gccarch-x86-64-v2" "gccarch-x86-64-v3" ];
sshKey = config.sops.secrets."services/hydra/id_ed25519_hydra".path;
});
@ -61,10 +61,10 @@
Host build-worker-02
Hostname build-worker-kyoumanet.fly.dev
Port 2202
Host build-worker-05
Host build-worker-03
Hostname build-worker-kyoumanet.fly.dev
Port 2203
Host build-worker-06
Host build-worker-05
Hostname build-worker-kyoumanet.fly.dev
Port 2204
'';

View file

@ -75,3 +75,4 @@ primary_region = 'ams'
[[vm]]
size = 'performance-16x'
memory = '96GB'

View file

@ -211,6 +211,7 @@
plugins.luasnip.enable = true;
plugins.nvim-autopairs.enable = true;
plugins.rainbow-delimiters.enable = true;
plugins.web-devicons.enable = true;
# Broken
plugins.rustaceanvim.enable = false;
plugins.treesitter-context.enable = true;