forked from emily/nixfiles
graphical, fly.toml: fixes
This commit is contained in:
parent
1f8a1403d3
commit
b32ddfa0a1
3 changed files with 8 additions and 6 deletions
|
@ -17,8 +17,8 @@
|
||||||
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
|
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
|
||||||
sshKey = config.sops.secrets."services/hydra/id_ed25519_hydra".path;
|
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";
|
sshUser = "nix-ssh";
|
||||||
maxJobs = 4;
|
maxJobs = 4;
|
||||||
speedFactor = 18;
|
speedFactor = 18;
|
||||||
|
@ -26,12 +26,12 @@
|
||||||
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" "gccarch-x86-64" "gccarch-x86-64-v2" "gccarch-x86-64-v3" ];
|
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;
|
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}";
|
hostName = "build-worker-${num}";
|
||||||
sshUser = "root";
|
sshUser = "root";
|
||||||
maxJobs = 4;
|
maxJobs = 4;
|
||||||
speedFactor = 20;
|
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" ];
|
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;
|
sshKey = config.sops.secrets."services/hydra/id_ed25519_hydra".path;
|
||||||
});
|
});
|
||||||
|
@ -61,10 +61,10 @@
|
||||||
Host build-worker-02
|
Host build-worker-02
|
||||||
Hostname build-worker-kyoumanet.fly.dev
|
Hostname build-worker-kyoumanet.fly.dev
|
||||||
Port 2202
|
Port 2202
|
||||||
Host build-worker-05
|
Host build-worker-03
|
||||||
Hostname build-worker-kyoumanet.fly.dev
|
Hostname build-worker-kyoumanet.fly.dev
|
||||||
Port 2203
|
Port 2203
|
||||||
Host build-worker-06
|
Host build-worker-05
|
||||||
Hostname build-worker-kyoumanet.fly.dev
|
Hostname build-worker-kyoumanet.fly.dev
|
||||||
Port 2204
|
Port 2204
|
||||||
'';
|
'';
|
||||||
|
|
1
fly.toml
1
fly.toml
|
@ -75,3 +75,4 @@ primary_region = 'ams'
|
||||||
|
|
||||||
[[vm]]
|
[[vm]]
|
||||||
size = 'performance-16x'
|
size = 'performance-16x'
|
||||||
|
memory = '96GB'
|
||||||
|
|
|
@ -211,6 +211,7 @@
|
||||||
plugins.luasnip.enable = true;
|
plugins.luasnip.enable = true;
|
||||||
plugins.nvim-autopairs.enable = true;
|
plugins.nvim-autopairs.enable = true;
|
||||||
plugins.rainbow-delimiters.enable = true;
|
plugins.rainbow-delimiters.enable = true;
|
||||||
|
plugins.web-devicons.enable = true;
|
||||||
# Broken
|
# Broken
|
||||||
plugins.rustaceanvim.enable = false;
|
plugins.rustaceanvim.enable = false;
|
||||||
plugins.treesitter-context.enable = true;
|
plugins.treesitter-context.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue