Reshuffling stuff

This commit is contained in:
2026-03-18 18:05:51 +00:00
parent b60f4f71a3
commit 55a866e051
15 changed files with 28 additions and 28 deletions
@@ -0,0 +1,20 @@
{ lib, config, ... }:
let
coreEnabled = config.mySystem.system.core.enable or false;
in
{
options.mySystem.system.locale.enable =
lib.mkEnableOption "Flake & Nix settings";
config = lib.mkIf (coreEnabled || config.mySystem.system.locale.enable) {
# --- Flakes & Nix Settings ---
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
download-buffer-size = 536870912; # 512 MB
cores = 2;
max-jobs = 1;
};
};
}