nix: increase cpu count
All checks were successful
Tests / Go tests (push) Successful in 38s
Nix / NixOS tests (push) Successful in 5m45s

This improves performance, especially when kvm is inaccessible.

Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
Ophestra 2024-12-18 14:21:08 +09:00
parent 2efedf56c0
commit e6a8030dab
Signed by: cat
SSH Key Fingerprint: SHA256:gQ67O0enBZ7UdZypgtspB2FDM1g3GVw8nX0XSdcFw8Q
2 changed files with 8 additions and 1 deletions

4
fipc/ipc.go Normal file
View File

@ -0,0 +1,4 @@
// Package fipc exports types useful for talking to fortify.
package fipc
// TODO

View File

@ -78,7 +78,10 @@ nixosTest {
programs.sway.enable = true;
# Need to switch to a different GPU driver than the default one (-vga std) so that Sway can launch:
virtualisation.qemu.options = [ "-vga none -device virtio-gpu-pci" ];
virtualisation.qemu.options = [
"-vga none -device virtio-gpu-pci"
"-smp 8"
];
environment.fortify = {
enable = true;