the nix app isn't quite that good, not worth it

This commit is contained in:
2025-04-10 11:47:52 -06:00
parent 5dd838b1ce
commit ee24a85358
3 changed files with 0 additions and 63 deletions

View File

@@ -1,38 +0,0 @@
{ ... }:
{
imports = [
../../base.nix
../../stylix.nix
];
my = import ./toggles.nix;
networking = {
hostName = "galaxy";
};
# nix = {
# settings = {
# cores = 3;
# max-jobs = 8;
# };
# buildMachines =
# let
# buildMachine = hostName: maxJobs: speedFactor: {
# inherit hostName maxJobs speedFactor;
# system = "x86_64-linux";
# sshUser = "nixremote";
# supportedFeatures = [
# "nixos-test"
# "benchmark"
# "big-parallel"
# "kvm"
# "gccarch-znver3"
# "gccarch-skylake"
# "gccarch-alderlake"
# ];
# };
# in
# [
# (buildMachine "workstation" 16 40)
# (buildMachine "server" 16 17)
# ];
# };
}