NixOS/hosts/galaxy/configuration.nix
2025-04-06 23:54:04 -06:00

39 lines
829 B
Nix

{ ... }:
{
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)
# ];
# };
}